Skip to content

Commit

Permalink
Update to Certbot 0.37.2 & Docker & pin apk version
Browse files Browse the repository at this point in the history
  • Loading branch information
ntopulos authored and olivierdalang committed Aug 27, 2019
1 parent d7c7987 commit cbec224
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM certbot/certbot:v0.33.1
FROM certbot/certbot:v0.37.2

# install docker-in-docker
ARG DOCKERVERSION=18.03.1-ce
RUN apk add curl
RUN curl -fsSLO https://download.docker.com/linux/static/stable/x86_64/docker-${DOCKERVERSION}.tgz && \
ARG DOCKERVERSION=19.03.1
RUN apk add --no-cache curl=7.65.1-r0; \
curl -fsSLO https://download.docker.com/linux/static/stable/x86_64/docker-${DOCKERVERSION}.tgz && \
tar xzvf docker-${DOCKERVERSION}.tgz --strip 1 -C /usr/local/bin docker/docker && \
rm docker-${DOCKERVERSION}.tgz

Expand Down

0 comments on commit cbec224

Please sign in to comment.