stack overflow solution https://stackoverflow.com/questions/55313610/importerror-libgl-so-1-cannot-open-shared-object-file-no-such-file-or-directo
Browse files- Dockerfile +4 -0
Dockerfile
CHANGED
@@ -27,6 +27,10 @@ WORKDIR /..
|
|
27 |
|
28 |
RUN pip install gradio
|
29 |
|
|
|
|
|
|
|
|
|
30 |
# Set up a new user named "user" with user ID 1000
|
31 |
RUN useradd -m -u 1000 user
|
32 |
|
|
|
27 |
|
28 |
RUN pip install gradio
|
29 |
|
30 |
+
#https://stackoverflow.com/questions/55313610/importerror-libgl-so-1-cannot-open-shared-object-file-no-such-file-or-directo
|
31 |
+
RUN apt-get update && apt-get install ffmpeg libsm6 libxext6 -y
|
32 |
+
|
33 |
+
|
34 |
# Set up a new user named "user" with user ID 1000
|
35 |
RUN useradd -m -u 1000 user
|
36 |
|