This commit is contained in:
=
2024-11-23 01:29:24 -05:00
parent 538600380a
commit 80a239cb94
3 changed files with 8 additions and 2 deletions

View File

@ -7,6 +7,11 @@ WORKDIR /app
COPY sort.py .
COPY requirements.txt .
# Install ffmpeg
RUN apt-get update \
&& apt-get install -y ffmpeg \
&& apt-get clean
# Ensure pip
RUN python -m ensurepip