ml-tooling / contaxy

MIT License
10 stars 8 forks source link

Bugfix: Remove pip symlink from Dockerfile #10

Closed JNKielmann closed 3 years ago

JNKielmann commented 3 years ago

When cloning the repo and running python build.py --make, the creation of the symlink to /usr/bin/pip3 fails because /usr/bin/pip already exists:

ln: failed to create symbolic link '/usr/bin/pip': File exists

It looks like the /usr/bin/pip executable is already added by the python3-pip package so the symlink is no longer required and has been removed in this PR.

lukasmasuch commented 3 years ago

LGTM. I had the same problem with another docker image. This solved it as well!