RVSCC/.drone.yml

23 lines
378 B
YAML
Raw Normal View History

2023-02-03 18:12:15 +00:00
kind: pipeline
2023-02-03 20:58:45 +00:00
type: docker
name: docker-build
2023-02-03 18:12:15 +00:00
2023-02-03 21:01:51 +00:00
platform:
os: linux
arch: arm64
2023-02-03 18:12:15 +00:00
steps:
2023-02-03 20:58:45 +00:00
- name: build_and_push
2023-02-03 18:12:15 +00:00
image: docker:dind
volumes:
- name: dockersock
path: /var/run/docker.sock
commands:
- docker build -t git.1159.cl/mario1159/rvscc
- docker push git.1159.cl/mario1159/rvscc:latest
volumes:
- name: dockersock
host:
path: /var/run/docker.sock