Error : failed to link /usr/share/man/man1/java.1 -> /etc/alternatives/java.1: No such file or directory
I am trying to install a java rpm in a docker container via dockerfile. I got the above error while installing rpm.
The reason is its a small container that cause the error. A workaround for getting out of this error is to create a directory before the rpm installation in your dockerfile.
mkdir -p /usr/share/man/man1
This works for me :)
I am trying to install a java rpm in a docker container via dockerfile. I got the above error while installing rpm.
The reason is its a small container that cause the error. A workaround for getting out of this error is to create a directory before the rpm installation in your dockerfile.
mkdir -p /usr/share/man/man1
This works for me :)
No comments:
Post a Comment