image: centos:8 stages: - build Build: stage: build script: - dnf install -y podman buildah - ./configure-podman - podman login -u gitlab-ci-token -p $CI_JOB_TOKEN $CI_REGISTRY - podman build --tag $CI_REGISTRY_IMAGE:latest . - podman push $CI_REGISTRY_IMAGE:latest