2017-08-08 11:36:16 +08:00
|
|
|
FROM alpine:3.5
|
2016-07-25 12:31:31 +08:00
|
|
|
|
2016-07-20 10:51:20 +08:00
|
|
|
MAINTAINER Eric Pfeiffer <computerfr33k@users.noreply.github.com>
|
|
|
|
|
2017-08-08 11:36:16 +08:00
|
|
|
ENV caddy_version=0.10.5
|
2017-06-29 12:47:29 +08:00
|
|
|
ARG plugins=http.git
|
2016-08-27 03:01:48 +08:00
|
|
|
|
|
|
|
LABEL caddy_version="$caddy_version" architecture="amd64"
|
2016-07-20 10:51:20 +08:00
|
|
|
|
2016-07-20 11:01:20 +08:00
|
|
|
RUN apk update \
|
2016-07-25 12:31:31 +08:00
|
|
|
&& apk upgrade \
|
2017-08-08 11:36:16 +08:00
|
|
|
&& apk add --no-cache openssh-client git tar curl
|
2016-07-20 10:51:20 +08:00
|
|
|
|
|
|
|
RUN curl --silent --show-error --fail --location \
|
2016-10-31 14:36:44 +08:00
|
|
|
--header "Accept: application/tar+gzip, application/x-gzip, application/octet-stream" -o - \
|
2017-06-29 12:47:29 +08:00
|
|
|
"https://caddyserver.com/download/linux/amd64?plugins=${plugins}" \
|
2017-02-24 21:55:56 +08:00
|
|
|
| tar --no-same-owner -C /usr/bin/ -xz caddy \
|
|
|
|
&& mv /usr/bin/caddy /usr/bin/caddy \
|
2016-10-31 14:36:44 +08:00
|
|
|
&& chmod 0755 /usr/bin/caddy
|
2016-07-20 10:51:20 +08:00
|
|
|
|
|
|
|
EXPOSE 80 443 2015
|
2016-07-25 12:31:31 +08:00
|
|
|
|
2017-05-01 18:36:31 +08:00
|
|
|
WORKDIR /var/www/public
|
2016-07-20 10:51:20 +08:00
|
|
|
|
2017-04-21 14:37:51 +08:00
|
|
|
CMD ["/usr/bin/caddy", "-conf", "/etc/Caddyfile"]
|