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:
authorJakub Warmuz <jakub@warmuz.org>2015-05-19 23:51:11 +0300
committerJakub Warmuz <jakub@warmuz.org>2015-05-19 23:51:11 +0300
commit3c0ce923b21b79e1185d057d387aa8e6a1232314 (patch)
tree5a2cc440421716eb291da88b0a16ac3b1bbea204 /Dockerfile
parent514d319662251bc9d3e493d0f9a56633ef973e93 (diff)
Dockerfile: use ubuntu:trusty (based on review feedback).
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index b998b1f8d..73d843399 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,4 +1,7 @@
-FROM debian:jessie
+# https://github.com/letsencrypt/lets-encrypt-preview/pull/431#issuecomment-103659297
+# it is more likely developers will already have ubuntu:trusty rather
+# than e.g. debian:jessie and image size differences are negligible
+FROM ubuntu:trusty
MAINTAINER Jakub Warmuz <jakub@warmuz.org>
# You neccesarily have to bind to 443@host as well! (ACME spec)
@@ -20,7 +23,7 @@ WORKDIR /opt/letsencrypt
#COPY . /opt/letsencrypt/
COPY bootstrap/debian.sh /opt/letsencrypt/src/
-RUN /opt/letsencrypt/src/debian.sh newer && \
+RUN /opt/letsencrypt/src/debian.sh && \
apt-get clean && \
rm -rf /var/lib/apt/lists/* \
/tmp/* \