mirror of
https://github.com/davegallant/rfd-fyi.git
synced 2025-08-06 07:13:39 +00:00
21 lines
259 B
Docker
21 lines
259 B
Docker
FROM node:18-alpine3.16 as build-stage
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package*.json ./
|
|
|
|
RUN yarn install
|
|
|
|
COPY . .
|
|
|
|
RUN yarn build
|
|
|
|
FROM caddy:2.5.2-alpine as production-stage
|
|
|
|
WORKDIR /my-site
|
|
|
|
COPY --from=build-stage /app/dist ./
|
|
|
|
COPY Caddyfile /etc/caddy/Caddyfile
|
|
|