update-containers.yml (496B)
1 build-base-image: 2 stage: update-container-images 3 interruptible: true 4 image: containers.torproject.org/tpo/tpa/base-images/podman:bookworm 5 script: 6 - export TAG="${CI_REGISTRY_IMAGE}/base:latest" 7 - podman login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY 8 - podman build --layers=false $IMAGE -t ${TAG} -f .gitlab/ci/containers/base/Containerfile . 9 - | 10 echo -e "\e[33mPushing new image to registry as ${TAG}\e[0m" 11 podman push ${TAG} 12 when: manual