From 3fa891bf082842030285279c1cd57df06a7d68e1 Mon Sep 17 00:00:00 2001 From: Randall Stillwell Date: Mon, 27 Apr 2026 14:46:47 -0500 Subject: [PATCH] docker: ensure apps/web/public exists so web runtime COPY succeeds The Next.js standalone runtime stage copies apps/web/public into the image, but the directory was never committed since the project hasn't shipped any static assets. BuildKit fails with "not found" on the COPY. Adding an empty .gitkeep guarantees the directory exists at build time and lets future static assets drop in without further build changes. Made-with: Cursor --- apps/web/public/.gitkeep | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 apps/web/public/.gitkeep diff --git a/apps/web/public/.gitkeep b/apps/web/public/.gitkeep new file mode 100644 index 0000000..e69de29