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 Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Multi-stage build for Skymmich
# SECURITY: This image does not contain any secrets or API keys
# All sensitive configuration is provided via environment variables at runtime
FROM node:24-alpine AS builder
FROM node:25-alpine AS builder

# Set working directory
WORKDIR /build
Expand Down Expand Up @@ -30,7 +30,7 @@ COPY tools/ ./tools/
RUN npm run build:docker

# Production stage
FROM node:24-alpine AS runtime
FROM node:25-alpine AS runtime

# Install curl for health checks
# hadolint ignore=DL3018
Expand Down
Loading