diff options
| author | Ruben Beltran del Rio <jj@r.bdr.sh> | 2026-01-30 13:18:49 +0100 |
|---|---|---|
| committer | Ruben Beltran del Rio <jj@r.bdr.sh> | 2026-01-30 13:19:48 +0100 |
| commit | 9e0e0e9f893bd0572e86cee319fd95aa1946fb30 (patch) | |
| tree | 09efc1524c5f5614145f81eee0234bf0f219da78 /Containerfile | |
| parent | 09e8430619f422dd0ab74275bbae9b47247e1452 (diff) | |
Fix broken build
Diffstat (limited to 'Containerfile')
| -rw-r--r-- | Containerfile | 4 |
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 |