blob: e2a6202b0966dff10b08b709756247f91b9c4f2a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
image: centos:8
stages:
- build
Build:
stage: build
script:
- ./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
|