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

9 lines
181 B

FROM python:alpine
COPY setup.py /
COPY hugo-enc /
RUN apk add --update libxslt-dev libxml2-dev gcc musl-dev && \
rm -rf /var/cache/apk/*
RUN pip install --no-cache-dir -r .