From aa95be45d08f3832fc87df85c4c6b8ba48cc75eb Mon Sep 17 00:00:00 2001 From: DavidHerran Date: Mon, 4 May 2026 18:29:18 -0500 Subject: [PATCH] fix: stop ignoring scripts/ in .dockerignore MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The new docker-entrypoint.sh lives in scripts/, but .dockerignore was excluding the whole folder from the build context — so the COPY in the Dockerfile resolved to a missing file: COPY scripts/docker-entrypoint.sh: not found Removing the `scripts/` line lets the build context include it. The other ignored paths stay (node_modules, .next, .git, env files, Dockerfile, docker-compose, nginx, certbot, prisma dev.db) — those genuinely don't need to be sent to the daemon. --- .dockerignore | 1 - 1 file changed, 1 deletion(-) diff --git a/.dockerignore b/.dockerignore index 89dab33..2254eda 100644 --- a/.dockerignore +++ b/.dockerignore @@ -10,7 +10,6 @@ docker-compose*.yml Dockerfile nginx/ certbot/ -scripts/ prisma/dev.db prisma/dev.db-journal prisma/migrations/migration_lock.toml