From 9e0d4f9ad6b93dcb866493abdd7398aab5552732 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Mon, 17 Aug 2026 15:23:32 +0200 Subject: [PATCH] fix: keep public/ tracked so it exists in a fresh checkout Third CI failure: docker build failed on COPY --from=build /app/public with "not found". public/ has been empty since M1 (all the default Next.js assets were removed and nothing replaced them), and git simply doesn't track empty directories - it only ever existed on my local disk from before I deleted its contents in place, never in a real checkout. Same root cause class as the tsc fix: local testing looked fine because of leftover local state a truly fresh clone doesn't have. --- public/.gitkeep | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 public/.gitkeep diff --git a/public/.gitkeep b/public/.gitkeep new file mode 100644 index 0000000..e69de29