diff --git a/Dockerfile b/Dockerfile index 67955d3..e30f221 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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