Replace codeberg.org references with git.mcintire.me in Dockerfile
Some checks failed
Build and Push / Build and Push Docker Image (push) Failing after 1s

This commit is contained in:
Graham McIntire 2026-07-25 09:55:45 -05:00
parent ab23031761
commit 2af49f2ae4
No known key found for this signature in database
GPG key ID: F4ABF488E6029E59

View file

@ -8,7 +8,7 @@
# This file is based on these images:
#
# - https://hub.docker.com/r/hexpm/elixir/tags - for the build image
# - codeberg.org/gmcintire/prop-base - prebuilt runtime base (see Dockerfile.base)
# - git.mcintire.me/gmcintire/prop-base - prebuilt runtime base (see Dockerfile.base)
# - Ex: docker.io/hexpm/elixir:1.19.5-erlang-28.4.1-debian-trixie-20260316-slim
#
ARG ELIXIR_VERSION=1.20.1
@ -21,7 +21,7 @@ ARG BUILDER_IMAGE="docker.io/hexpm/elixir:${ELIXIR_VERSION}-erlang-${OTP_VERSION
# only when Dockerfile.base changes, so this Dockerfile pulls a
# ready-made layer instead of recompiling wgrib2 + reinstalling cdo
# (~10 min) on every push.
ARG BASE_IMAGE="codeberg.org/gmcintire/prop-base:latest"
ARG BASE_IMAGE="git.mcintire.me/gmcintire/prop-base:latest"
# ---- Elixir build stage ----
FROM ${BUILDER_IMAGE} AS builder