Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build
FROM node:20.19.3-alpine AS build
FROM node:20.20.0-alpine AS build
WORKDIR /workspace/app/
EXPOSE 3000

Expand All @@ -19,7 +19,7 @@ COPY . .
RUN npm run build

# Runtime
FROM node:20.19.3-alpine AS run
FROM node:20.20.0-alpine AS run
WORKDIR /workspace/app/

ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true
Expand Down
Loading