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

12 lines
232 B

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