This commit is contained in:
parent
9a2f7f6dd2
commit
7bce2de99b
3 changed files with 3 additions and 3 deletions
|
@ -7,7 +7,7 @@ steps:
|
|||
- name: build
|
||||
image: golang
|
||||
commands:
|
||||
- go build
|
||||
- go build -o ett ./
|
||||
- name: docker
|
||||
image: plugins/docker
|
||||
settings:
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
FROM scratch
|
||||
COPY ./eventTimeTracking /ett
|
||||
COPY ./ett /ett
|
||||
#RUN ls -lah /
|
||||
#RUN chmod uog+rwx /ett
|
||||
#RUN /ett
|
||||
|
|
2
Makefile
2
Makefile
|
@ -1,2 +1,2 @@
|
|||
build:
|
||||
CGO_ENABLED=0 GOOS=linux go build ./
|
||||
CGO_ENABLED=0 GOOS=linux go build -o ett ./
|
Loading…
Reference in a new issue