Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +4 -0
Dockerfile
CHANGED
|
@@ -1,8 +1,12 @@
|
|
| 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
|
|
|
|
| 1 |
FROM python:3.11-slim
|
| 2 |
WORKDIR $HOME/app
|
| 3 |
COPY . .
|
| 4 |
+
RUN pip3 uninstall ffmpeg
|
| 5 |
+
RUN pip3 uninstall ffmpeg-python
|
| 6 |
RUN pip uninstall ffmpeg
|
| 7 |
RUN pip uninstall ffmpeg-python
|
| 8 |
+
RUN pip3 install ffmpeg
|
| 9 |
+
RUN pip3 install ffmpeg-python
|
| 10 |
RUN pip install ffmpeg
|
| 11 |
RUN pip install ffmpeg-python
|
| 12 |
RUN pip install -r requirements.txt
|