Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile29
1 files changed, 0 insertions, 29 deletions
diff --git a/Dockerfile b/Dockerfile
deleted file mode 100644
index f3626dc8d..000000000
--- a/Dockerfile
+++ /dev/null
@@ -1,29 +0,0 @@
-FROM python:2-alpine3.7
-
-ENTRYPOINT [ "certbot" ]
-EXPOSE 80 443
-VOLUME /etc/letsencrypt /var/lib/letsencrypt
-WORKDIR /opt/certbot
-
-COPY CHANGELOG.md README.rst setup.py src/
-COPY letsencrypt-auto-source/pieces/dependency-requirements.txt .
-COPY acme src/acme
-COPY certbot src/certbot
-
-RUN apk add --no-cache --virtual .certbot-deps \
- libffi \
- libssl1.0 \
- openssl \
- ca-certificates \
- binutils
-RUN apk add --no-cache --virtual .build-deps \
- gcc \
- linux-headers \
- openssl-dev \
- musl-dev \
- libffi-dev \
- && pip install -r /opt/certbot/dependency-requirements.txt \
- && pip install --no-cache-dir \
- --editable /opt/certbot/src/acme \
- --editable /opt/certbot/src \
- && apk del .build-deps