Skip to content

Commit 7845a62

Browse files
chore(docker): bump node from 22-slim to 24-slim
Bumps node from 22-slim to 24-slim. --- updated-dependencies: - dependency-name: node dependency-version: 24-slim dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 8f47396 commit 7845a62

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -------- STAGE 1 : Dépendances install (Yarn 4 PnP, sans node_modules) --------
2-
FROM node:22-slim AS deps
2+
FROM node:24-slim AS deps
33
WORKDIR /app
44

55
# Pré-requis build natifs
@@ -18,7 +18,7 @@ COPY admin-interface/package.json ./admin-interface/
1818
RUN yarn install
1919

2020
# -------- STAGE 2 : Build du workspace cible --------
21-
FROM node:22-slim AS builder
21+
FROM node:24-slim AS builder
2222
WORKDIR /app
2323

2424
RUN corepack enable
@@ -44,7 +44,7 @@ RUN yarn workspace phantom-api-backend build \
4444
&& yarn workspace admin-interface build
4545

4646
# -------- STAGE 3 : Runtime production allégé --------
47-
FROM node:22-slim AS runner
47+
FROM node:24-slim AS runner
4848
WORKDIR /app
4949

5050
# Santé + sécurité + dépendances build

0 commit comments

Comments
 (0)