From a4cdeab0b04a3f5764b5e88b29b8681b71f7ed53 Mon Sep 17 00:00:00 2001 From: Gorka Date: Tue, 17 Mar 2026 13:27:52 -0300 Subject: [PATCH] fix: exclude .env from Docker image The local .env file (generated by up.sh) was being copied into the Docker image via COPY, overriding Fly secrets with localhost:5432 and causing ECONNREFUSED on every deploy built from a local machine. --- .dockerignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.dockerignore b/.dockerignore index 0501d09..b78cabd 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1 +1,2 @@ fly.toml +.env