blob: c5ba61a337c2a3694f65ec87c6a7f06e307146cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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
|