docker: Add libmagic and optipng to Dockerfile

This commit is contained in:
2021-01-03 15:57:41 +03:00
parent 884bc0aa97
commit 15f3a3c6c8

View File

@@ -1,6 +1,6 @@
FROM python:3.8-slim
RUN apt update && apt install -y git
RUN apt update && apt install -y git libmagic1 optipng
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt