build: switch to git.rgst.io image
All checks were successful
Test / elint (push) Successful in 49s

This commit is contained in:
Jared Allard 2025-03-09 16:58:05 -07:00
parent 79282fc2c7
commit fd92273118
Signed by: jaredallard
SSH key fingerprint: SHA256:wyRyyv28jBYw8Yp/oABNPUYvbGd6hyZj23XVXEm5G/U
4 changed files with 4 additions and 6 deletions

View file

@ -22,8 +22,6 @@ jobs:
experimental: true
- name: Setup Environment
working-directory: .tools
run: |-
mise run build
docker pull ghcr.io/jaredallard/overlay:updater
run: mise run build
- name: Run linter
run: mise run lint

View file

@ -37,7 +37,7 @@ import (
var manifestValidationScript []byte
// gentooImage is the docker image used for validating Manifest files.
var gentooImage = "ghcr.io/jaredallard/overlay:updater"
var gentooImage = "git.rgst.io/jaredallard/overlay:updater"
// Common errors.
var (

View file

@ -98,7 +98,7 @@ func (e *Executor) Run(ctx context.Context) (*Results, error) {
// is much better.
bid, err := exec.Command(
"docker", "run", "--init", "-d", "--rm", "--entrypoint", "sleep",
"ghcr.io/jaredallard/overlay:updater", "infinity",
"git.rgst.io/jaredallard/overlay:updater", "infinity",
).Output()
if err != nil {
var execErr *exec.ExitError

View file

@ -13,7 +13,7 @@ if [[ ! -d "$ebuild_path" ]]; then
exit 1
fi
imageName="ghcr.io/jaredallard/overlay:updater"
imageName="git.rgst.io/jaredallard/overlay:updater"
# Build the image if it doesn't already exist in the cache.
if ! docker image inspect "$imageName" >/dev/null; then