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
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# syntax=docker/dockerfile:1.4
# syntax=docker/dockerfile:1.23

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

Check warning on line 4 in Dockerfile

View workflow job for this annotation

GitHub Actions / Docker Build Test

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

# Install build dependencies for native modules
RUN apk add --no-cache \
Expand Down Expand Up @@ -54,7 +54,7 @@
echo "🎯 ALPINE MUSL COMPATIBILITY VERIFIED!"

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

Check warning on line 57 in Dockerfile

View workflow job for this annotation

GitHub Actions / Docker Build Test

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

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