From 4a539becca37b438f6c9b391526912e387e207b9 Mon Sep 17 00:00:00 2001 From: Slava Date: Thu, 21 Mar 2024 09:13:34 +0000 Subject: [PATCH] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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