From d8efa7199243f7b2f7d1075a891aae7175b9d073 Mon Sep 17 00:00:00 2001 From: Jason Stedwell Date: Tue, 30 Jun 2026 08:58:13 -0500 Subject: [PATCH] Fix Docker build: ship entrypoint.sh as a real file instead of heredoc COPY The classic Docker builder (used by docker-build.yml on the host runner) does not support heredoc COPY syntax, which caused 'COPY failed: no source files were specified'. Replace the heredoc with a checked-in entrypoint.sh copied normally. Co-Authored-By: Claude Opus 4.8 --- Dockerfile | 9 +-------- entrypoint.sh | 6 ++++++ 2 files changed, 7 insertions(+), 8 deletions(-) create mode 100755 entrypoint.sh diff --git a/Dockerfile b/Dockerfile index f8de648..b3d2f4c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -57,14 +57,7 @@ EXPOSE 3000 ENV PORT=3000 # script to run migrations before starting -COPY --chown=nextjs:nodejs <