blackbirdchess-docker-dev/caddy/Dockerfile

26 lines
719 B
Docker
Raw Normal View History

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