Docker image for hugo-enc (https://github.com/adityatelange/hugo_enc)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
docker-hugo-encryptor/Dockerfile

10 lines
203 B

3 years ago
FROM python:alpine
ADD requirements.txt /
ADD hugo-encryptor.py /
RUN apk add --update libxslt-dev libxml2-dev gcc && \
3 years ago
rm -rf /var/cache/apk/*
3 years ago
RUN pip install --no-cache-dir -r /requirements.txt