laradock/caddy/Dockerfile

24 lines
706 B
Docker
Raw Normal View History

2016-07-20 10:51:20 +08:00
FROM alpine:3.4
2016-07-25 12:31:31 +08:00
2016-07-20 10:51:20 +08:00
MAINTAINER Eric Pfeiffer <computerfr33k@users.noreply.github.com>
2016-08-27 02:25:31 +08:00
LABEL caddy_version="0.9.1" 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 \
&& apk add tar curl
2016-07-20 10:51:20 +08:00
RUN curl --silent --show-error --fail --location \
--header "Accept: application/tar+gzip, application/x-gzip, application/octet-stream" -o - \
2016-08-27 02:25:31 +08:00
"https://github.com/mholt/caddy/releases/download/v0.9.1/caddy_linux_amd64.tar.gz" \
2016-07-20 10:51:20 +08:00
| 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 \
&& /usr/bin/caddy -version
EXPOSE 80 443 2015
2016-07-25 12:31:31 +08:00
2016-07-20 10:51:20 +08:00
WORKDIR /var/www/laravel/public
2016-08-27 02:25:31 +08:00
CMD ["caddy" "-conf", "/etc/Caddyfile"]