diff --git a/Containerfile b/Containerfile index ba22be6..56ed4d3 100644 --- a/Containerfile +++ b/Containerfile @@ -2,7 +2,7 @@ # RSR PLATINUM: Container support for reproducible builds # Stage 1: Build -FROM node:25-alpine AS builder +FROM node:26-alpine AS builder LABEL maintainer="v3-templater maintainers " LABEL org.opencontainers.image.source="https://github.com/Hyperpolymath/v3-templater" @@ -26,7 +26,7 @@ COPY . . RUN npm run build # Stage 2: Production -FROM node:25-alpine +FROM node:26-alpine # Add non-root user for security RUN addgroup -g 1001 -S v3t && \