rairo commited on
Commit
cde495e
·
verified ·
1 Parent(s): 88765b2

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -3
Dockerfile CHANGED
@@ -1,8 +1,8 @@
1
  FROM python:3.10
2
 
3
- # FIXED: Install the missing system dependency for OpenCV before doing anything else.
4
- # This must be run as root, which is the default user at the start of the build.
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