forked from laradock/laradock
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request laradock#1035 from bestlong/fix-caddy-service-buil…
…d-failed fix caddy service build failed
- Loading branch information
Showing
1 changed file
with
2 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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" | ||
|
||
|
@@ -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 | ||
|