Files
rfd-fyi/Dockerfile
dependabot[bot] b62d4aa02c Bump node from 18-alpine3.16 to 19-alpine3.16
Bumps node from 18-alpine3.16 to 19-alpine3.16.

---
updated-dependencies:
- dependency-name: node
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-11-06 00:57:33 +00:00

21 lines
242 B
Docker

FROM node:19-alpine3.16 as builder
WORKDIR /app
COPY package*.json ./
RUN yarn install
COPY . .
RUN yarn build
FROM caddy:2.6.2-alpine as runtime
WORKDIR /my-site
COPY --from=builder /app/dist ./
COPY Caddyfile /etc/caddy/Caddyfile