Skip to content
This repository was archived by the owner on Jul 21, 2026. It is now read-only.
Merged
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 Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 <maintainers@hyperpolymath.dev>"
LABEL org.opencontainers.image.source="https://github.com/Hyperpolymath/v3-templater"
Expand All @@ -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 && \
Expand Down
Loading