fix(ci): install git+curl in verify-compilation container
Some checks failed
Build and Push / Build and Push Docker Image (push) Failing after 30s

The hexpm/elixir slim image lacks git (needed for heroicons git dep)
and curl (needed for esbuild/tailwind binary downloads).
This commit is contained in:
Graham McIntire 2026-07-28 08:02:26 -05:00
parent 31f7db8cb1
commit cfa2b06617

View file

@ -60,6 +60,7 @@ jobs:
docker.io/hexpm/elixir:1.20.1-erlang-29.0.2-debian-trixie-20260518-slim \
sh -euc '\
mkdir -p /app && cd /app && tar xf - && \
apt-get update -qq && apt-get install -y -qq git curl ca-certificates && \
mix local.hex --force && \
mix local.rebar --force && \
mix deps.get --only prod && \