Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions backend.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20-alpine AS builder
FROM node:22-alpine AS builder

WORKDIR /work/backend

Expand All @@ -9,14 +9,14 @@ COPY backend .
COPY common /work/common/
RUN yarn compile

FROM node:20-alpine AS runner-base
FROM node:22-alpine AS runner-base

WORKDIR /work

COPY backend/package.json backend/yarn.lock ./
RUN yarn --production

FROM node:20-alpine AS api-runner
FROM node:22-alpine AS api-runner

WORKDIR /work

Expand All @@ -31,7 +31,7 @@ COPY backend/package.json /work/backend
ENTRYPOINT ["/sbin/tini", "--"]
CMD ["node", "backend/src/cmd/index.js"]

FROM node:20-alpine AS job-runner
FROM node:22-alpine AS job-runner

WORKDIR /work

Expand Down
2 changes: 1 addition & 1 deletion frontend.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20-alpine AS base
FROM node:22-alpine AS base

WORKDIR /work/frontend

Expand Down