Skip to content

Commit e17cbd6

Browse files
chore(deps): bump node 20-alpine -> 22-alpine (EOL Apr 2026)
1 parent 807dc7c commit e17cbd6

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

Dockerfile.frontend

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Stage 1: Build
2-
FROM node:20-alpine AS build
2+
FROM node:22-alpine AS build
33
WORKDIR /app
44
COPY frontend/package*.json ./
55
RUN npm install

Dockerfile.frontend.optimized

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# Multi-stage Dockerfile for Sovereign Map Frontend (Optimized)
22

33
# Stage 1: Dependencies
4-
FROM node:20-alpine AS deps
4+
FROM node:22-alpine AS deps
55
WORKDIR /app
66
COPY frontend/package*.json ./
77
RUN npm install --no-audit --no-fund && npm cache clean --force
88

99
# Stage 2: Build
10-
FROM node:20-alpine AS build
10+
FROM node:22-alpine AS build
1111
WORKDIR /app
1212
COPY --from=deps /app/node_modules ./node_modules
1313
COPY frontend/ .

0 commit comments

Comments
 (0)