This repository has been archived on 2022-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
skynet-webportal/docker/caddy/Dockerfile

20 lines
404 B
Docker
Raw Normal View History

FROM node:12.18.0 AS client-builder
COPY src ./src
COPY static ./static
COPY gatsby-config.js .
COPY package.json .
COPY yarn.lock .
RUN yarn --frozen-lockfile
RUN yarn build
FROM caddy:2.0.0-builder AS caddy-builder
RUN caddy-builder github.com/caddy-dns/cloudflare
FROM caddy:2.0.0
COPY --from=client-builder /public /home/user/public_html
COPY --from=caddy-builder /usr/bin/caddy /usr/bin/caddy