Spaces:
Sleeping
Sleeping
02alexander
commited on
Commit
·
91258c3
1
Parent(s):
1b7cb8e
add required system dependency to dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
@@ -3,6 +3,9 @@
|
|
3 |
|
4 |
FROM python:3.11.8
|
5 |
|
|
|
|
|
|
|
6 |
# Set up a new user named "user" with user ID 1000
|
7 |
RUN useradd -m -u 1000 user
|
8 |
|
|
|
3 |
|
4 |
FROM python:3.11.8
|
5 |
|
6 |
+
# Dependencies for opencv
|
7 |
+
RUN apt update && apt upgrade -y && apt install -y ffmpeg
|
8 |
+
|
9 |
# Set up a new user named "user" with user ID 1000
|
10 |
RUN useradd -m -u 1000 user
|
11 |
|