From 07b22054af81fd42e05b445a1be0b7ec60eee865 Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Sun, 27 Jul 2025 10:58:04 -0500 Subject: [PATCH] Fix Gleam module compilation - copy src directory and gleam.toml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add src directory to Dockerfile (contains Gleam source files) - Add gleam.toml to Dockerfile (Gleam configuration) - The mix compile alias already handles gleam_compile This minimal change ensures Gleam files are available during the build without modifying the compilation process. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 9d39a6d..63c0b09 100644 --- a/Dockerfile +++ b/Dockerfile @@ -32,6 +32,8 @@ RUN mix deps.get --only $MIX_ENV && \ # Copy and compile application COPY config config COPY lib lib +COPY src src +COPY gleam.toml ./ COPY assets assets COPY priv priv COPY rel rel