ARG version=2.1.1 FROM golang:1.14-alpine3.11 AS builder ARG version WORKDIR /src RUN apk add --no-cache \ git \ ca-certificates RUN go get -u github.com/caddyserver/xcaddy/cmd/xcaddy ENV CADDY_VERSION="v${version}" RUN xcaddy build --with github.com/caddy-dns/cloudflare --output /usr/bin/caddy RUN /usr/bin/caddy version FROM alpine:3 LABEL maintainer "Fabian Stamm " RUN echo http://dl-cdn.alpinelinux.org/alpine/v3.9/community >> /etc/apk/repositories RUN apk add --no-cache php7 php7-fpm php7-opcache php7-curl php7-json php7-zip COPY --from=builder /usr/bin/caddy /usr/bin/caddy #Validate install RUN caddy version RUN caddy list-modules EXPOSE 80 443 2019 VOLUME [ "/data", "/config" ] WORKDIR /srv COPY Caddyfile /etc/Caddyfile CMD ["caddy", "run", "--config", "/etc/Caddyfile", "--adapter", "caddyfile"]