blackbirdchess-docker-dev/caddy/Dockerfile

31 lines
790 B
Docker
Raw Normal View History

FROM golang:alpine
2018-03-16 10:34:47 +01:00
LABEL maintainer="Huadong Zuo <admin@zuohuadong.cn>"
2016-07-20 04:51:20 +02:00
RUN apk add --no-cache \
openssh \
git \
build-base \
&& mkdir -p $GOPATH/src/golang.org/x/ \
&& cd $GOPATH/src/golang.org/x/ \
&& git clone https://github.com/golang/sys.git sys \
&& go get github.com/abiosoft/caddyplug/caddyplug \
&& caddyplug install-caddy \
apk del build-base
ARG plugins="cors"
## ARG plugins="cors cgi cloudflare azure linode"
2016-07-20 04:51:20 +02:00
RUN caddyplug install ${plugins}
RUN apk add --no-cache inotify-tools \
&& echo -e "#!/bin/sh\nwhile inotifywait -e modify /etc/caddy; do\n\tpkill caddy\ndone " >> /start.sh \
&& chmod +x /start.sh
2016-07-20 04:51:20 +02:00
EXPOSE 80 443
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
CMD ["sh","-c","/start.sh & /usr/bin/caddy -conf /etc/caddy/Caddyfile -agree"]