Skip to content

Commit

Permalink
Fix dockerfile by using a pinned release for Caddy (old dl URL change…
Browse files Browse the repository at this point in the history
…d, latest release has a regression on 'without' for the proxy directive).

Signed-off-by: Marios Andreopoulos <opensource@andmarios.com>
  • Loading branch information
andmarios committed Apr 22, 2017
1 parent 639122c commit 58f11ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker/Dockerfile
Expand Up @@ -7,10 +7,10 @@ RUN apk add --no-cache ca-certificates wget \
&& echo "progress = dot:giga" | tee /etc/wgetrc

# Add and Setup Caddy webserver
RUN wget "https://caddyserver.com/download/build?os=linux&arch=amd64&features=" \
-O /caddy.tgz \
RUN wget "https://github.com/mholt/caddy/releases/download/v0.9.5/caddy_linux_amd64.tar.gz" -O /caddy.tgz \
&& mkdir caddy \
&& tar xzf caddy.tgz -C /caddy \
&& mv /caddy/caddy_linux_amd64 /caddy/caddy \
&& rm -f /caddy.tgz

# Add and Setup Schema-Registry-Ui
Expand Down

0 comments on commit 58f11ad

Please sign in to comment.