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:
authorbmw <bmw@users.noreply.github.com>2015-11-11 04:54:36 +0300
committerbmw <bmw@users.noreply.github.com>2015-11-11 04:54:36 +0300
commit26e13c9fa7dea58f3d57d4eead4ffe8d4c62e02a (patch)
treec240b20c06f681c2136dbc0ef080fa430cfbbb90 /Dockerfile
parent6fbcebd4ab8cb356de92c80c976c9bf0fefb13b4 (diff)
parentec5c28980dbcb787c3c89a40a49a8c421294953d (diff)
Merge pull request #1375 from johnl/1374-docker-symlink-bug-workaround
docker: Use full filename when copying symlink
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index d7aca784b..02aa0f0d7 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -21,7 +21,8 @@ WORKDIR /opt/letsencrypt
# If <dest> doesn't exist, it is created along with all missing
# directories in its path.
-COPY bootstrap/ubuntu.sh /opt/letsencrypt/src/
+
+COPY bootstrap/ubuntu.sh /opt/letsencrypt/src/ubuntu.sh
RUN /opt/letsencrypt/src/ubuntu.sh && \
apt-get clean && \
rm -rf /var/lib/apt/lists/* \