diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..2c00709 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,13 @@ +kind: pipeline +name: build +type: docker + +steps: +- name: build + image: ubuntu:22.04 + commands: + - git clone https://git.lipovcan.cz/Upstream/mikrotik-exporter.git + - apt update & apt install docker + - docker build -t mikrotik_exporter:1.0 . + +