From 52b54203c9dd91c00daab1a328f740955caf25bd Mon Sep 17 00:00:00 2001 From: Carlos Mogas da Silva Date: Sun, 23 May 2021 01:09:26 +0100 Subject: [PATCH] Add missing deps --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 81ab3e1..0c05934 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,4 +3,7 @@ FROM python:alpine ADD requirements.txt / ADD hugo-encryptor.py / +RUN apk add --update libxslt libxml2 libxml2-dev && \ + rm -rf /var/cache/apk/* + RUN pip install --no-cache-dir -r /requirements.txt