From 2504f8125296bce11ffdfda0cf278d6f71502010 Mon Sep 17 00:00:00 2001 From: Francesco Grazioso Date: Fri, 12 Apr 2024 12:48:24 +0100 Subject: [PATCH] add dependencies to dockerfile --- dockerfile | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/dockerfile b/dockerfile index 2fa8359..59ea63d 100644 --- a/dockerfile +++ b/dockerfile @@ -6,8 +6,13 @@ WORKDIR /app ENV TEMP /tmp RUN mkdir -p $TEMP -RUN apt-get update && apt-get install -y ffmpeg +RUN apt-get update && apt-get install -y \ + ffmpeg \ + build-essential \ + libssl-dev \ + libffi-dev \ + python3-dev RUN pip install --no-cache-dir -r requirements.txt -CMD ["python", "run.py"] \ No newline at end of file +CMD ["python", "run.py"]