-
Notifications
You must be signed in to change notification settings - Fork 285
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dockerfile fix #138
base: master
Are you sure you want to change the base?
dockerfile fix #138
Conversation
@@ -11,6 +11,9 @@ ENV CMAKE_PREFIX_PATH="$(dirname $(which conda))/../" | |||
RUN apt-get update && apt-get install -y git libglib2.0-0 libsm6 libxrender-dev \ | |||
&& apt-get clean \ | |||
&& rm -rf /var/lib/apt/lists/* | |||
|
|||
RUN apt-get update ##[edited] | |||
RUN apt-get install ffmpeg libsm6 libxext6 -y |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
libsm6 is already included in line 11
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It seems ok, same error the PR will fix it
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please remove the duplicate package
apt-get install -y libgl1-mesa-glx |
Hi @sjhddh !We are grateful for your efforts in helping improve this open-source project during your personal time. |
This fixes the "ImportError: libGL.so.1: cannot open shared object file: No such file or directory" when running docker container. Having such important edits to the Dockerfile will resolve the issue.