certbot/Dockerfile

27 lines
635 B
Docker
Raw Normal View History

2017-01-12 07:01:29 -05:00
FROM python:2-alpine
ENTRYPOINT [ "certbot" ]
2017-01-12 07:01:29 -05:00
EXPOSE 80 443
VOLUME /etc/letsencrypt /var/lib/letsencrypt
2016-04-14 13:20:23 -04:00
WORKDIR /opt/certbot
COPY CHANGES.rst README.rst setup.py src/
COPY acme src/acme
COPY certbot src/certbot
2017-01-12 07:01:29 -05:00
RUN apk add --no-cache --virtual .certbot-deps \
libffi \
libssl1.0 \
ca-certificates \
binutils
RUN apk add --no-cache --virtual .build-deps \
gcc \
linux-headers \
openssl-dev \
musl-dev \
libffi-dev \
&& pip install --no-cache-dir \
--editable /opt/certbot/src/acme \
--editable /opt/certbot/src \
&& apk del .build-deps