Gregniuki commited on
Commit
8b8fdfd
·
1 Parent(s): 5351ee1

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -2
Dockerfile CHANGED
@@ -3,9 +3,11 @@
3
  FROM debian:bullseye-slim
4
 
5
  # Install FFmpeg
6
- RUN apt-get update && apt-get install -y ffmpeg
 
 
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