From 15f3a3c6c8599629f2f2654f4bac0ff56e795a5a Mon Sep 17 00:00:00 2001 From: Aleksey Lobanov Date: Sun, 3 Jan 2021 15:57:41 +0300 Subject: [PATCH] docker: Add libmagic and optipng to Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f66cdf6..744bcbd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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