From 0ff6dc892d5ab069a2df94f35ae9c9d9a67f3b6f Mon Sep 17 00:00:00 2001 From: Pierre Jaury Date: Fri, 3 Feb 2017 00:07:49 +0100 Subject: [PATCH] Install certbot from pip instead of source --- admin/Dockerfile | 6 ------ admin/requirements.txt | 1 + 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/admin/Dockerfile b/admin/Dockerfile index 7e1d81a4..befa4f4d 100644 --- a/admin/Dockerfile +++ b/admin/Dockerfile @@ -6,12 +6,6 @@ WORKDIR /app COPY requirements.txt . RUN pip install -r requirements.txt -# Temporarily install certbot from source while waiting for 0.10 -RUN git clone https://github.com/certbot/certbot /certbot \ - && cd /certbot \ - && pip install -e ./acme \ - && pip install -e ./ - COPY mailu ./mailu COPY migrations ./migrations COPY manage.py . diff --git a/admin/requirements.txt b/admin/requirements.txt index edcd1fdd..f5337d48 100644 --- a/admin/requirements.txt +++ b/admin/requirements.txt @@ -13,3 +13,4 @@ gunicorn docker-py tabulate apscheduler +certbot