RUN which ffmpeg
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
@@ -2,6 +2,8 @@ FROM python:3.13
|
|
2 |
|
3 |
RUN apt-get update && apt-get install -y ffmpeg libsm6 libxext6 && rm -rf /var/lib/apt/lists/*
|
4 |
|
|
|
|
|
5 |
WORKDIR /code
|
6 |
|
7 |
COPY ./requirements.txt /code/requirements.txt
|
|
|
2 |
|
3 |
RUN apt-get update && apt-get install -y ffmpeg libsm6 libxext6 && rm -rf /var/lib/apt/lists/*
|
4 |
|
5 |
+
RUN which ffmpeg
|
6 |
+
|
7 |
WORKDIR /code
|
8 |
|
9 |
COPY ./requirements.txt /code/requirements.txt
|