Update Dockerfile to use Node.js 25
Some checks failed
Production Deployment (Zero Downtime) / deploy-production (push) Failing after 13m16s

- Update base image from node:20 to node:25
- Matches Gitea workflow configuration and camera-controls@3.1.2 requirements
This commit is contained in:
2026-02-03 22:38:45 +01:00
parent efafd38b1a
commit 719071345e

View File

@@ -1,5 +1,5 @@
# Multi-stage build for optimized production image
FROM node:20 AS base
FROM node:25 AS base
# Install dependencies only when needed
FROM base AS deps