nginx/.gitlab-docker-armv7l.yml

16 lines
567 B
YAML
Raw Normal View History

armv7l:build:
2020-05-28 07:03:16 +00:00
variables:
ARCH: armv7l
2020-05-28 07:03:16 +00:00
stage: build
script:
2023-02-03 06:32:46 +00:00
- if [ -f init ]; then chmod 500 init; fi
- ([ -z "$REFRESH" -a -f docker/${CI_COMMIT_REF_SLUG} ]) && docker load < docker/${CI_COMMIT_REF_SLUG} || true
- docker build --build-arg HTTP_PROXY=http://proxy.dege.lan:3128 --cache-from ${CI_REGISTRY_IMAGE}:${VERSIONARCH} -t ${CI_REGISTRY_IMAGE}:${VERSIONARCH} .
- docker push ${CI_REGISTRY_IMAGE}:${VERSIONARCH}
- docker save ${CI_REGISTRY_IMAGE}:${VERSIONARCH} > docker/${CI_COMMIT_REF_SLUG}
2020-05-28 07:03:16 +00:00
tags:
2023-02-03 06:32:46 +00:00
- docker
- armv7l
2020-05-28 07:03:16 +00:00
only:
2023-02-03 06:32:46 +00:00
- master