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:
parent
3f9f906858
commit
864e9f9f2f
1 changed files with 2 additions and 0 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue