All checks were successful
Reese's Arch Toolbox / build-and-push-arch-toolbox (push) Successful in 38m58s
16 lines
598 B
Bash
Executable File
16 lines
598 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Build latest image
|
|
podman pull quay.io/toolbx/arch-toolbox:latest
|
|
podman build \
|
|
-t gitea.reeseapps.com/services/arch-toolbox:latest \
|
|
-f ./infrastructure/graduated/fedora/arch.containerfile
|
|
|
|
podman build \
|
|
-t gitea.reeseapps.com/services/arch-toolbox-amdgpu:latest \
|
|
-f ./infrastructure/graduated/fedora/arch-amdgpu.containerfile
|
|
|
|
echo "podman container stop arch-toolbox-latest"
|
|
echo "podman container rm arch-toolbox-latest"
|
|
echo "toolbox create -i gitea.reeseapps.com/services/arch-toolbox-amdgpu:latest"
|
|
echo "toolbox create -i gitea.reeseapps.com/services/arch-toobolx" |