blob: dbca5db73173bb7a18ca8419728827e7b8750f2d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
image: registry.centos.org/centos:8
stages:
- build
Build:
stage: build
tags:
- aarch64
script:
- ./configure-mirror
- ./configure-podman
- docker login -u gitlab-ci-token -p $CI_JOB_TOKEN $CI_REGISTRY
- docker build --tag $CI_REGISTRY_IMAGE:aarch64 .
- docker push $CI_REGISTRY_IMAGE:aarch64
|