-
Notifications
You must be signed in to change notification settings - Fork 238
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for all these suggestions @roffe, I've added some notes throughout- hope that's cool.
.drone.yml
Outdated
image: golang:1.10 | ||
commands: | ||
- make build-linux | ||
# build: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you delete the commented section please
@@ -0,0 +1,4 @@ | |||
bin |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could this include .git
also?
Thanks for adding this- be useful to exclude as much as we can.
Dockerfile
Outdated
RUN apk add --no-cache make | ||
WORKDIR /go/src/github.com/uswitch/kiam | ||
ADD . . | ||
RUN make proto/service.pb.go build-linux |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could we simplify the Makefile so that the default is to build the binary and have it manage the rest please?
something like this? |
Thanks @roffe |
Closes #100