mirror of
https://github.com/davegallant/rfd-fyi.git
synced 2025-08-06 07:13:39 +00:00
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>
21 lines
242 B
Docker
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
|
|
|