diff --git a/Dockerfile b/Dockerfile index 157578cd5..fb5695a77 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,4 @@ FROM python:2-alpine -MAINTAINER Jakub Warmuz -MAINTAINER William Budington EXPOSE 80 443 VOLUME /etc/letsencrypt /var/lib/letsencrypt @@ -9,11 +7,8 @@ ENTRYPOINT [ "certbot" ] COPY . src RUN apk add --no-cache --virtual .certbot-deps \ - dialog \ - augeas-libs \ libffi \ libssl1.0 \ - wget \ ca-certificates \ binutils RUN apk add --no-cache --virtual .build-deps \ @@ -25,6 +20,4 @@ RUN apk add --no-cache --virtual .build-deps \ && pip install --no-cache-dir \ --editable /opt/certbot/src/acme \ --editable /opt/certbot/src \ - --editable /opt/certbot/src/certbot-apache \ - --editable /opt/certbot/src/certbot-nginx \ && apk del .build-deps