mirror of
https://github.com/FJurmanovic/wallet-go-api.git
synced 2026-02-06 06:08:16 +00:00
15 lines
233 B
YAML
15 lines
233 B
YAML
---
|
|
kind: pipeline
|
|
type: docker
|
|
name: default
|
|
|
|
steps:
|
|
- name: build
|
|
image: golang:alpine
|
|
commands:
|
|
- go mod download
|
|
- CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o /api ./cmd/api/main.go
|
|
|
|
volumes:
|
|
- name: deps
|
|
temp: {} |