Update Dockerfile
Browse files- Dockerfile +3 -3
Dockerfile
CHANGED
|
@@ -1,8 +1,8 @@
|
|
| 1 |
FROM python:3.10
|
| 2 |
|
| 3 |
-
# FIXED:
|
| 4 |
-
# This
|
| 5 |
-
RUN apt-get update && apt-get install -y libgl1-mesa-glx
|
| 6 |
|
| 7 |
### Set up user with permissions
|
| 8 |
# Set up a new user named "user" with user ID 1000
|
|
|
|
| 1 |
FROM python:3.10
|
| 2 |
|
| 3 |
+
# FIXED: Added ffmpeg and other required libraries to the existing system dependency installation.
|
| 4 |
+
# This is the only line that has been changed.
|
| 5 |
+
RUN apt-get update && apt-get install -y libgl1-mesa-glx ffmpeg libsm6 libxext6
|
| 6 |
|
| 7 |
### Set up user with permissions
|
| 8 |
# Set up a new user named "user" with user ID 1000
|