diff --git a/.travis.yml b/.travis.yml index 9dc7038..a662e75 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,6 @@ language: go go: -- 1.9.x +- 1.10.x script: - go build -o build/resec_linux_amd64_${TRAVIS_BRANCH} - zip -j build/resec_linux_amd64_${TRAVIS_BRANCH}.zip build/resec_linux_amd64_${TRAVIS_BRANCH} diff --git a/CHANGELOG.md b/CHANGELOG.md index 0cd477b..2632af7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## 0.2.0 (March 13, 2018) + +FEATURES: + + * Consul service name for tag based service discovery + * Option to ADD (MASTER|SLAVE)_TAGS to be populated to consul + * Managing dependencies using [dep](https://github.com/golang/dep) + * Go version bumped to 0.10.x ## 0.1.0 (January 22, 2018) diff --git a/Dockerfile b/Dockerfile index be3673d..1a92147 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,6 @@ -FROM golang:1.9.2 +FROM golang:1.10-alpine WORKDIR /go/src/github.com/YotpoLtd/resec/ COPY . /go/src/github.com/YotpoLtd/resec/ -RUN go get ./... RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o resec . FROM alpine:latest