1
0
mirror of https://github.com/byulmaru/quesdon synced 2024-11-23 14:36:02 +09:00
quesdon/.gitlab-ci.yml
2022-04-23 21:45:38 +09:00

16 lines
340 B
YAML

image: jdrouet/docker-with-buildx:stable
services:
- docker:dind
stages:
- build
build:
stage: build
script:
- docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" $CI_REGISTRY
- docker buildx create --use
- docker buildx build --push --platform linux/arm64/v8 -t "$CI_REGISTRY_IMAGE" .
only:
- master