During a Docker image build of sync-service, the following step prints an unexpected warning:
#19 [builder 7/17] RUN mix deps.get
#19 0.755 warning: missing dependency electric_client (../elixir-client)
#19 1.169 Resolving Hex dependencies...
#19 1.354 Resolution completed in 0.174s
#19 1.390 Unchanged:
[...]
The dependency is defined like so in sync-service/mix.exs:
{:electric_client, path: "../elixir-client", only: [:test], runtime: false}
But it looks like mix is trying to fetch it anyway and complains because the ../elixir-client is not available in the Docker builder context.
During a Docker image build of sync-service, the following step prints an unexpected warning:
The dependency is defined like so in
sync-service/mix.exs:But it looks like mix is trying to fetch it anyway and complains because the
../elixir-clientis not available in the Docker builder context.