From 987b8c9c8f3f014e4365d1a1b5b370fe823ce184 Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 10 Jun 2026 13:37:20 +0200 Subject: [PATCH] =?UTF-8?q?build:=20public/=20anlegen=20(.gitkeep)=20?= =?UTF-8?q?=E2=80=94=20Dockerfile=20COPY=20/app/public?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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) --- public/.gitkeep | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 public/.gitkeep diff --git a/public/.gitkeep b/public/.gitkeep new file mode 100644 index 0000000..9e1bee0 --- /dev/null +++ b/public/.gitkeep @@ -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.