fix: remove wgrib2 from CI apt-get install (not an apt package)
Some checks failed
Build and Push / Build and Push Docker Image (push) Failing after 13m41s

wgrib2 is compiled from source in Dockerfile.base, not available via apt.
Keep cdo which is available.
This commit is contained in:
Graham McIntire 2026-08-04 12:54:14 -05:00
parent 579ce68af5
commit 9fd2622550

View file

@ -75,7 +75,7 @@ jobs:
sh -euc '\
mkdir -p /app && cd /app && tar xf - && \
export DEBIAN_FRONTEND=noninteractive && \
apt-get update -qq && apt-get install -y -qq git curl ca-certificates build-essential cdo wgrib2 && \
apt-get update -qq && apt-get install -y -qq git curl ca-certificates build-essential cdo && \
mix local.hex --force && \
mix local.rebar --force && \
mix deps.get --only prod && \
@ -98,7 +98,7 @@ jobs:
sh -euc '\
mkdir -p /app && cd /app && tar xf - && \
export DEBIAN_FRONTEND=noninteractive && \
apt-get update -qq && apt-get install -y -qq git curl ca-certificates build-essential cdo wgrib2 && \
apt-get update -qq && apt-get install -y -qq git curl ca-certificates build-essential cdo && \
mix local.hex --force && \
mix local.rebar --force && \
mix deps.get && \