From eb4504a7eabb504ce58cfa2df9df30a0fee6b227 Mon Sep 17 00:00:00 2001 From: s3lph Date: Fri, 20 Jul 2018 11:09:43 +0200 Subject: [PATCH] Added missing libmagic dependency to alpine-based image. --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 83514a4..044faee 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,7 @@ FROM python:3.6-alpine RUN mkdir -p /var/matemat/db /var/matemat/upload +RUN apk --update add libmagic ADD . / RUN pip3 install -r /requirements.txt