caddy-server/.drone.yml
mattburchett 0b9c7d640f
Some checks reported errors
continuous-integration/drone/push Build encountered an error
Update '.drone.yml'
2021-02-26 22:35:02 -06:00

14 lines
377 B
YAML

kind: pipeline
name: caddy-server
type: docker
steps:
- name: Build Caddy Server
image: golang
commands:
- pwd
- go build -o caddy-server main.go
- name: Build Docker Image
image: gcr.io/kaniko-project/executor:debug
commands:
- /kaniko/executor -f Dockerfile --destination "registry.linuxrocker.com/caddy-server:v0.0.1" --context "$PWD"