Spaces:
Running
Running
Update Dockerfile
Browse files- 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
|