Spaces:
Sleeping
Sleeping
Commit
·
6d38cdf
1
Parent(s):
2e9aa1a
Add ffmpeg to Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
@@ -1,6 +1,9 @@
|
|
1 |
FROM python:3.12
|
2 |
COPY --from=ghcr.io/astral-sh/uv:0.4.20 /uv /bin/uv
|
3 |
|
|
|
|
|
|
|
4 |
# Set up a new user named "user" with user ID 1000
|
5 |
RUN useradd -m -u 1000 user
|
6 |
ENV PATH="/home/user/.local/bin:$PATH"
|
|
|
1 |
FROM python:3.12
|
2 |
COPY --from=ghcr.io/astral-sh/uv:0.4.20 /uv /bin/uv
|
3 |
|
4 |
+
RUN apt-get update
|
5 |
+
RUN apt-get --yes install ffmpeg
|
6 |
+
|
7 |
# Set up a new user named "user" with user ID 1000
|
8 |
RUN useradd -m -u 1000 user
|
9 |
ENV PATH="/home/user/.local/bin:$PATH"
|