update caddy to v0.9.1
This commit is contained in:
parent
509cb9ac2e
commit
f9fd391879
|
@ -2,7 +2,7 @@ FROM alpine:3.4
|
|||
|
||||
MAINTAINER Eric Pfeiffer <computerfr33k@users.noreply.github.com>
|
||||
|
||||
LABEL caddy_version="0.9.0" architecture="amd64"
|
||||
LABEL caddy_version="0.9.1" architecture="amd64"
|
||||
|
||||
RUN apk update \
|
||||
&& apk upgrade \
|
||||
|
@ -10,7 +10,7 @@ RUN apk update \
|
|||
|
||||
RUN curl --silent --show-error --fail --location \
|
||||
--header "Accept: application/tar+gzip, application/x-gzip, application/octet-stream" -o - \
|
||||
"https://github.com/mholt/caddy/releases/download/v0.9.0/caddy_linux_amd64.tar.gz" \
|
||||
"https://github.com/mholt/caddy/releases/download/v0.9.1/caddy_linux_amd64.tar.gz" \
|
||||
| tar --no-same-owner -C /usr/bin/ -xz caddy_linux_amd64 \
|
||||
&& mv /usr/bin/caddy_linux_amd64 /usr/bin/caddy \
|
||||
&& chmod 0755 /usr/bin/caddy \
|
||||
|
@ -20,6 +20,4 @@ EXPOSE 80 443 2015
|
|||
|
||||
WORKDIR /var/www/laravel/public
|
||||
|
||||
ENTRYPOINT ["caddy"]
|
||||
|
||||
CMD ["-conf", "/etc/Caddyfile"]
|
||||
CMD ["caddy" "-conf", "/etc/Caddyfile"]
|
||||
|
|
Loading…
Reference in New Issue