aboutsummaryrefslogtreecommitdiff
path: root/Containerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Containerfile')
-rw-r--r--Containerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Containerfile b/Containerfile
index 0df0638..7b2672f 100644
--- a/Containerfile
+++ b/Containerfile
@@ -1,5 +1,5 @@
# Build stage
-FROM node:22-alpine AS build
+FROM node:23-alpine AS build
WORKDIR /app
RUN corepack enable pnpm
COPY package.json pnpm-lock.yaml ./
@@ -8,7 +8,7 @@ COPY . .
RUN pnpm build
# Production stage
-FROM node:22-alpine
+FROM node:23-alpine
WORKDIR /app
RUN npm install -g serve
COPY --from=build /app/dist ./dist