Skip to content

Commit c5fcb3c

Browse files
committed
hotfix: Revert to node 22.11.0 and fix OOM issues
1 parent 0d4b3ee commit c5fcb3c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
FROM node:22.18.0-alpine AS build
1+
FROM node:22.11.0-alpine AS build
22
WORKDIR /app
33
COPY package.json yarn.lock ./
44
RUN yarn install
55
COPY . .
66
RUN yarn prisma generate
77
RUN yarn build
8-
FROM node:22.18.0-alpine
8+
FROM node:22.11.0-alpine
99
WORKDIR /app
1010
COPY --from=build /app/dist ./dist
1111
COPY --from=build /app/node_modules ./node_modules

0 commit comments

Comments
 (0)