Update Dockerfile to use Node.js 24-slim for frontend build

This commit is contained in:
SergeantPanda 2025-09-27 17:53:15 -05:00
parent 563f890cf4
commit db5713a050

View file

@ -4,7 +4,7 @@ ARG REPO_NAME=dispatcharr
ARG BASE_TAG=base
# --- Build frontend ---
FROM node:20 AS frontend-builder
FROM node:24-slim AS frontend-builder
WORKDIR /app/frontend
COPY ./frontend /app/frontend