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 @@
# syntax=docker/dockerfile:1.4

# ===== BUILD STAGE =====
FROM node:20-alpine as builder
FROM node:20.20.2-alpine as builder

# Install build dependencies for native modules
RUN apk add --no-cache \
Expand Down Expand Up @@ -54,7 +54,7 @@ RUN --mount=type=cache,target=/root/.npm \
echo "🎯 ALPINE MUSL COMPATIBILITY VERIFIED!"

# ===== RUNTIME STAGE =====
FROM node:20-alpine as runtime
FROM node:20.20.2-alpine as runtime

# Install runtime dependencies (dumb-init for proper signal handling, and su-exec for user switching)
RUN apk add --no-cache \
Expand Down
Loading