From e863a582d721c3674a3e0329f25fe5d501e96367 Mon Sep 17 00:00:00 2001 From: Carlos Mogas da Silva Date: Sun, 23 May 2021 01:13:01 +0100 Subject: [PATCH] Dev packages don't pull gcc :( --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b3bca7e..fed36db 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM python:alpine ADD requirements.txt / ADD hugo-encryptor.py / -RUN apk add --update libxslt-dev libxml2-dev && \ +RUN apk add --update libxslt-dev libxml2-dev gcc && \ rm -rf /var/cache/apk/* RUN pip install --no-cache-dir -r /requirements.txt