Fix Docker build by removing manual compilation step

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 <noreply@anthropic.com>
This commit is contained in:
Graham McIntire 2025-07-24 17:26:00 -05:00
parent 864e9f9f2f
commit 8f9987cb5c
No known key found for this signature in database

View file

@ -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)