Fix Docker build for vendored aprs dependency

The vendored aprs dependency wasn't being compiled properly in the Docker build.
Added explicit compilation step to ensure the dependency is built before mix deps.compile.

🤖 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:23:02 -05:00
parent 3f9f906858
commit 864e9f9f2f
No known key found for this signature in database

View file

@ -47,6 +47,8 @@ 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)