Skip to content
Open
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
4 changes: 2 additions & 2 deletions deploy/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# syntax=docker/dockerfile:1.7

FROM node:22.13.1-alpine3.21 AS frontend-build
FROM node:25.2.1-alpine3.21 AS frontend-build
WORKDIR /src
COPY package.json package-lock.json ./
COPY frontend/package.json ./frontend/package.json
RUN npm ci --no-audit --no-fund
COPY frontend ./frontend
RUN npm run frontend:build

FROM node:22.13.1-alpine3.21 AS runtime
FROM node:25.2.1-alpine3.21 AS runtime
WORKDIR /app
ENV HOST=0.0.0.0 \
PORT=8787 \
Expand Down
Loading