From 6e64e0850b481e16963cb06224bb4ebebc48e157 Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Sun, 19 Apr 2026 16:02:47 -0500 Subject: [PATCH] fix(grid-rs): use :latest tag for wgrib2 source image MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Elixir build workflow only pushes :${TAG} (timestamped) and :latest — there is no :main tag. Switch to :latest to match what's actually published. --- rust/prop_grid_rs/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/prop_grid_rs/Dockerfile b/rust/prop_grid_rs/Dockerfile index ea8aa95e..e5e8e791 100644 --- a/rust/prop_grid_rs/Dockerfile +++ b/rust/prop_grid_rs/Dockerfile @@ -6,7 +6,7 @@ # the already-published Elixir image. # # Runtime uid 65534 matches the fsGroup on the NFS scores mount. -ARG WGRIB2_IMAGE=git.mcintire.me/graham/prop:main +ARG WGRIB2_IMAGE=git.mcintire.me/graham/prop:latest FROM ${WGRIB2_IMAGE} AS wgrib2-src