Update Dockerfile

This commit is contained in:
Slava
2024-03-21 09:13:34 +00:00
parent 734427d16f
commit 4a539becca

View File

@@ -2,7 +2,7 @@ FROM python:latest
LABEL authors="bacon"
WORKDIR /app
COPY requirements.txt /app
RUN apt-get update && apt-get install ffmpeg -y
RUN apk add ffmpeg
RUN python3 -m venv venv/
CMD source venv/bin/activate
RUN pip install -r requirements.txt