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-09 21:50:40 +0300
committerJakub Warmuz <jakub@warmuz.org>2015-05-09 21:50:40 +0300
commit29fdde5f5f31d346ff8ab1e3344dd854494d9177 (patch)
treecb803dabef18ffc4dfc415290d4bbbd6d4004121 /Dockerfile
parent9a0073fff53f7f2ea04de944dfbf46db76eb2bc3 (diff)
Dockerfile: set PATH
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 496c3c609..66047484b 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -51,5 +51,6 @@ RUN virtualenv --no-site-packages -p python2 /opt/letsencrypt && \
# this might also help in debugging: you can "docker run --entrypoint
# bash" and investigate, apply patches, etc.
+ENV PATH /opt/letsencrypt/bin:$PATH
# TODO: is --text really necessary?
-ENTRYPOINT [ "/opt/letsencrypt/bin/letsencrypt", "--text" ]
+ENTRYPOINT [ "letsencrypt", "--text" ]