1
0
Fork 0
docker-hugo-encryptor/Dockerfile

10 lines
212 B
Text
Raw Normal View History

2021-05-23 00:04:57 +00:00
FROM python:alpine
ADD requirements.txt /
ADD hugo-encryptor.py /
2021-05-23 00:15:53 +00:00
RUN apk add --update libxslt-dev libxml2-dev gcc musl-dev && \
2021-05-23 00:09:26 +00:00
rm -rf /var/cache/apk/*
2021-05-23 00:04:57 +00:00
RUN pip install --no-cache-dir -r /requirements.txt