diff --git a/intaste-ui/Dockerfile b/intaste-ui/Dockerfile index a779757..6835f85 100644 --- a/intaste-ui/Dockerfile +++ b/intaste-ui/Dockerfile @@ -12,14 +12,14 @@ # syntax=docker/dockerfile:1 -FROM node:24.12.0-alpine AS deps +FROM node:25.6.1-alpine AS deps WORKDIR /app # Install dependencies COPY package.json package-lock.json* ./ RUN npm ci --only=production -FROM node:24.12.0-alpine AS builder +FROM node:25.6.1-alpine AS builder WORKDIR /app # Install all dependencies (including devDependencies for build) @@ -33,7 +33,7 @@ COPY . . ENV NEXT_TELEMETRY_DISABLED=1 RUN npm run build -FROM node:24.12.0-alpine AS runner +FROM node:25.6.1-alpine AS runner WORKDIR /app # Build arguments for user configuration