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 @@
# Use the official Node.js image as the base image
FROM node:18-alpine AS base
FROM node:23-alpine AS base

# Set the working directory
WORKDIR /app
Expand All @@ -17,7 +17,7 @@ COPY . .
RUN npm run build

# Use a smaller base image for the final stage
FROM node:18-alpine AS final
FROM node:23-alpine AS final

# Set the working directory
WORKDIR /app
Expand Down