Skip to content

Commit df5825e

Browse files
committed
specify node 22 for continued armv7 support
1 parent 1a1bb9f commit df5825e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build (Backend)
2-
FROM node:lts-slim AS backend-build
2+
FROM node:22-slim AS backend-build
33

44
WORKDIR /usr/src/app
55
COPY ./backend ./
@@ -19,7 +19,7 @@ RUN npm install --omit-optional
1919
RUN npm run build
2020

2121
# Build (Frontend)
22-
FROM node:lts-slim AS frontend-build
22+
FROM node:22-slim AS frontend-build
2323
WORKDIR /usr/src/app
2424
# Copy root package.json for version access
2525
COPY ./package.json ../package.json
@@ -29,7 +29,7 @@ ENV NODE_ENV=production
2929
RUN npm run build
3030

3131
# Deploy (Backend)
32-
FROM node:lts-slim AS backend-deploy
32+
FROM node:22-slim AS backend-deploy
3333

3434
WORKDIR /app
3535
ENV NODE_ENV=production

0 commit comments

Comments
 (0)