blob: 6b12a86a05af4163a31350226a6dced7c6f56aeb (
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
- docker login -u gitlab-ci-token -p $CI_JOB_TOKEN $CI_REGISTRY
- docker build --tag $CI_REGISTRY_IMAGE:latest .
- docker push $CI_REGISTRY_IMAGE:latest
|