RVSCC/.drone.yml

23 lines
380 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: amd64
2023-02-03 21:01:51 +00:00
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:
2023-02-03 21:45:45 +00:00
- docker build -t git.1159.cl/mario1159/rvscc .
2023-02-03 18:12:15 +00:00
- docker push git.1159.cl/mario1159/rvscc:latest
volumes:
- name: dockersock
host:
path: /var/run/docker.sock