Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +4 -2
Dockerfile
CHANGED
@@ -3,9 +3,11 @@
|
|
3 |
FROM debian:bullseye-slim
|
4 |
|
5 |
# Install FFmpeg
|
6 |
-
RUN apt-get update &&
|
|
|
|
|
7 |
# Use the official Python 3.9 image as the base image
|
8 |
-
FROM python:3.9
|
9 |
|
10 |
# Set the working directory to /code
|
11 |
WORKDIR /app
|
|
|
3 |
FROM debian:bullseye-slim
|
4 |
|
5 |
# Install FFmpeg
|
6 |
+
RUN apt-get update && \
|
7 |
+
apt-get install -y python3-pip ffmpeg
|
8 |
+
|
9 |
# Use the official Python 3.9 image as the base image
|
10 |
+
#FROM python:3.9
|
11 |
|
12 |
# Set the working directory to /code
|
13 |
WORKDIR /app
|