From 8f9987cb5cae86c308e245b8cb7ec9e31ba268a9 Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Thu, 24 Jul 2025 17:26:00 -0500 Subject: [PATCH] Fix Docker build by removing manual compilation step MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The vendored aprs dependency is properly compiled by mix deps.compile without needing a separate compilation step. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- Dockerfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3eeb4d4..2d95325 100644 --- a/Dockerfile +++ b/Dockerfile @@ -47,8 +47,6 @@ COPY gleam.toml gleam.toml COPY priv/gleam priv/gleam # Compile dependencies first (including vendor/aprs) -# Force compile the vendored aprs dependency -RUN cd vendor/aprs && mix compile && cd /app RUN mix deps.compile # Then compile Gleam files (using pre-compiled BEAM files)