-
Notifications
You must be signed in to change notification settings - Fork 1
/
werf.yaml
40 lines (39 loc) · 1017 Bytes
/
werf.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
configVersion: 1
project: "backend"
---
image: builder
from: golang:1.19-alpine
docker:
WORKDIR: /go/src/github.com/rarimo/evm-identity-saver-svc
git:
- add: /
to: /go/src/github.com/rarimo/evm-identity-saver-svc
stageDependencies:
setup:
- "**/*"
shell:
install:
- apk add git build-base
- go env -w GOPRIVATE=github.com/*
- go env -w GONOSUMDB=github.com/*
- go env -w GONOPROXY=github.com/*
- cd /go/src/github.com/rarimo/evm-identity-saver-svc
- go mod tidy
setup:
- export CGO_ENABLED=0
- export GOOS=linux
- cd /go/src/github.com/rarimo/evm-identity-saver-svc
- go build -o /usr/local/bin/evm-identity-saver-svc /go/src/github.com/rarimo/evm-identity-saver-svc
---
image: service
from: alpine:3.14.6
docker:
ENTRYPOINT: evm-identity-saver-svc
shell:
setup:
- apk add --no-cache ca-certificates
import:
- image: builder
add: /usr/local/bin/evm-identity-saver-svc
to: /usr/local/bin/evm-identity-saver-svc
after: setup