aboutsummaryrefslogtreecommitdiffstats
path: root/.gitlab-ci.yml
blob: 68f78c91bb9b07dea9b313d0cfb7f9c3970c2494 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
image: registry.centos.org/centos:8

stages:
  - build

Build:
  stage: build
  script:
    - ./configure-mirror
    - ./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