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"]