fix: bind Next server to all container interfaces
CI Pipeline with Test Management / 🧪 Run Tests & Generate Reports (push) Waiting to run
CI Pipeline with Test Management / 🐳 Docker Integration Tests (push) Blocked by required conditions
CI Pipeline with Test Management / 🏗️ Build Docker Image (push) Blocked by required conditions
CI Pipeline with Test Management / 📊 Generate Test Summary (push) Blocked by required conditions
Test Reporting & Gherkin Analysis / 🧪 Run Tests & Generate Reports (push) Waiting to run
Test Reporting & Gherkin Analysis / 📊 Analyze Test Coverage (push) Blocked by required conditions
Test Reporting & Gherkin Analysis / 🔄 Sync with Linear (push) Blocked by required conditions
Test Reporting & Gherkin Analysis / ⚡ Performance Monitoring (push) Blocked by required conditions

This commit is contained in:
Do Siki
2026-08-17 17:03:41 +02:00
parent 2c9d3d01f1
commit ea00a136ac
+3
View File
@@ -27,6 +27,9 @@ WORKDIR /app
# Set production environment
ENV NODE_ENV=production
# Next standalone otherwise inherits Docker's container-ID HOSTNAME and only binds
# to the container IP. Bind explicitly to all interfaces for port publishing and healthchecks.
ENV HOSTNAME=0.0.0.0
# Create non-root user for security
RUN addgroup --system --gid 1001 nodejs