We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 807dc7c commit e17cbd6Copy full SHA for e17cbd6
2 files changed
Dockerfile.frontend
@@ -1,5 +1,5 @@
1
# Stage 1: Build
2
-FROM node:20-alpine AS build
+FROM node:22-alpine AS build
3
WORKDIR /app
4
COPY frontend/package*.json ./
5
RUN npm install
Dockerfile.frontend.optimized
@@ -1,13 +1,13 @@
# Multi-stage Dockerfile for Sovereign Map Frontend (Optimized)
# Stage 1: Dependencies
-FROM node:20-alpine AS deps
+FROM node:22-alpine AS deps
6
7
RUN npm install --no-audit --no-fund && npm cache clean --force
8
9
# Stage 2: Build
10
11
12
COPY --from=deps /app/node_modules ./node_modules
13
COPY frontend/ .
0 commit comments