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

11 lines
232 B

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