radinhas commited on
Commit
94b4239
1 Parent(s): 6492f7f

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -0
Dockerfile CHANGED
@@ -1,6 +1,10 @@
1
  FROM python:3.11-slim
2
  WORKDIR $HOME/app
3
  COPY . .
 
 
 
 
4
  RUN pip install -r requirements.txt
5
  VOLUME /data
6
  EXPOSE 23333
 
1
  FROM python:3.11-slim
2
  WORKDIR $HOME/app
3
  COPY . .
4
+ RUN pip uninstall ffmpeg
5
+ RUN pip uninstall ffmpeg-python
6
+ RUN pip install ffmpeg
7
+ RUN pip install ffmpeg-python
8
  RUN pip install -r requirements.txt
9
  VOLUME /data
10
  EXPOSE 23333