From 58cda247ff0bdb10922553be3c383ead7a0c8c18 Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Sun, 27 Jul 2025 10:57:29 -0500 Subject: [PATCH] Revert "Fix Gleam module compilation in Docker build" This reverts commit b244007d981fc67529da409abe990c65ab80a938. --- Dockerfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index b267880..9d39a6d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,7 +24,7 @@ RUN mix local.hex --force && \ ENV MIX_ENV=prod # Install mix dependencies -COPY mix.exs mix.lock gleam.toml ./ +COPY mix.exs mix.lock ./ COPY vendor vendor RUN mix deps.get --only $MIX_ENV && \ mix deps.compile @@ -32,7 +32,6 @@ RUN mix deps.get --only $MIX_ENV && \ # Copy and compile application COPY config config COPY lib lib -COPY src src COPY assets assets COPY priv priv COPY rel rel @@ -41,7 +40,6 @@ COPY rel rel RUN cd vendor/aprs && mix compile && cd ../.. && \ mkdir -p _build/prod/lib/aprs/ebin && \ cp -r vendor/aprs/_build/prod/lib/aprs/ebin/* _build/prod/lib/aprs/ebin/ && \ - mix gleam.compile && \ mix compile && \ mix assets.deploy && \ mix release