add dependencies to dockerfile

This commit is contained in:
Francesco Grazioso 2024-04-12 12:48:24 +01:00
parent 50997fb184
commit 2504f81252

View File

@ -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"]
CMD ["python", "run.py"]