Skip to content

Commit

Permalink
Merge pull request laradock#1035 from bestlong/fix-caddy-service-buil…
Browse files Browse the repository at this point in the history
…d-failed

fix caddy service build failed
  • Loading branch information
bestlong authored Jun 29, 2017
2 parents 27c6de1 + 63152e1 commit 7c9f9c1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion caddy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ FROM alpine:3.4
MAINTAINER Eric Pfeiffer <[email protected]>

ENV caddy_version=0.10.3
ARG plugins=http.git

LABEL caddy_version="$caddy_version" architecture="amd64"

Expand All @@ -12,7 +13,7 @@ RUN apk update \

RUN curl --silent --show-error --fail --location \
--header "Accept: application/tar+gzip, application/x-gzip, application/octet-stream" -o - \
"https://caddyserver.com/download/linux/amd64?plugins=http.cgi,http.cors,http.expires,http.filemanager,http.git,http.ipfilter,http.realip,tls.dns.cloudflare,tls.dns.digitalocean,tls.dns.dnspod,tls.dns.dyn,tls.dns.googlecloud,tls.dns.linode,tls.dns.namecheap,tls.dns.ovh,tls.dns.route53,tls.dns.vultr" \
"https://caddyserver.com/download/linux/amd64?plugins=${plugins}" \
| tar --no-same-owner -C /usr/bin/ -xz caddy \
&& mv /usr/bin/caddy /usr/bin/caddy \
&& chmod 0755 /usr/bin/caddy
Expand Down

0 comments on commit 7c9f9c1

Please sign in to comment.