From 9e0e0e9f893bd0572e86cee319fd95aa1946fb30 Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Fri, 30 Jan 2026 13:18:49 +0100 Subject: Fix broken build --- Containerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Containerfile') 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 -- cgit