From d42824a6ca882babea0b2cd0831adad9988ce74a Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Wed, 22 Oct 2025 14:58:00 -0500 Subject: [PATCH] fix: remove vendor/aprs local dependency from Dockerfile MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove references to vendor/aprs directory since the app uses GitHub dependency {:aprs, github: "aprsme/aprs", branch: "main"} instead. This was causing build failures when trying to compile non-existent local vendor code. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- Dockerfile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7b6b305..6305749 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,7 +24,6 @@ ENV MIX_ENV=prod # Install mix dependencies COPY mix.exs mix.lock ./ -COPY vendor vendor RUN mix deps.get --only $MIX_ENV && \ mix deps.compile @@ -36,10 +35,7 @@ COPY priv priv COPY rel rel # Build application -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 compile && \ +RUN mix compile && \ mix assets.deploy && \ mix release