Skip to content
Closed
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
6 changes: 3 additions & 3 deletions intaste-ui/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@

# syntax=docker/dockerfile:1

FROM node:24.12.0-alpine AS deps
FROM node:25.7.0-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.7.0-alpine AS builder
WORKDIR /app

# Install all dependencies (including devDependencies for build)
Expand All @@ -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.7.0-alpine AS runner
WORKDIR /app

# Build arguments for user configuration
Expand Down