Files
rfd-fyi/Dockerfile
dependabot[bot] d8c296c60f Bump node from 19.9.0-alpine3.16 to 20.1.0-alpine3.16
Bumps node from 19.9.0-alpine3.16 to 20.1.0-alpine3.16.

---
updated-dependencies:
- dependency-name: node
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-05-09 09:00:04 -04:00

21 lines
246 B
Docker

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