build: public/ anlegen (.gitkeep) — Dockerfile COPY /app/public

Das Projekt hatte kein public/-Verzeichnis; der Runner-Stage-COPY
(COPY /app/public ./public) brach mit '/app/public: not found' ab.
Leeres, getracktes public/ behebt das (Next.js bedient es problemlos).

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
Claude
2026-06-10 13:37:20 +02:00
parent 5d4afb5936
commit 987b8c9c8f

3
public/.gitkeep Normal file
View File

@@ -0,0 +1,3 @@
# Platzhalter, damit das public/-Verzeichnis existiert und vom Docker-Build
# (COPY /app/public ./public) sowie von Next.js (statische Assets) genutzt werden
# kann. Statische Dateien (z. B. favicon.ico, robots.txt) hier ablegen.