14 lines
256 B
YAML
14 lines
256 B
YAML
kind: pipeline
|
|
name: build
|
|
type: docker
|
|
|
|
steps:
|
|
- name: build
|
|
image: ubuntu:22.04
|
|
commands:
|
|
- apt update & apt install docker git -y
|
|
- git clone https://git.lipovcan.cz/Upstream/mikrotik-exporter.git
|
|
- docker build -t mikrotik_exporter:1.0 .
|
|
|
|
|