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
4 changes: 2 additions & 2 deletions apps/backend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM node:22-alpine AS builder
FROM node:26-alpine AS builder
WORKDIR /app
COPY package*.json ./
RUN npm ci
COPY . .
RUN npm run build

FROM node:22-alpine AS runner
FROM node:26-alpine AS runner
WORKDIR /app
RUN apk add --no-cache curl
COPY package*.json ./
Expand Down
6 changes: 3 additions & 3 deletions apps/backend/Dockerfile.prod
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ ARG BUILD_DATE
ARG VCS_REF

# ── Stage 1: Builder ─────────────────────────────────────────────────────────
FROM node:22-alpine AS builder
FROM node:26-alpine AS builder

WORKDIR /app

Expand All @@ -25,15 +25,15 @@ COPY tests ./tests
RUN npm run build

# ── Stage 2: Production Dependencies ─────────────────────────────────────────
FROM node:22-alpine AS deps
FROM node:26-alpine AS deps

WORKDIR /app

COPY package*.json ./
RUN npm ci --only=production && npm cache clean --force

# ── Stage 3: Runner ──────────────────────────────────────────────────────────
FROM node:22-alpine AS runner
FROM node:26-alpine AS runner

ARG BUILD_VERSION
ARG BUILD_DATE
Expand Down
Loading