Skip to content

Commit

Permalink
bump versions, add goreleaser
Browse files Browse the repository at this point in the history
  • Loading branch information
umputun committed Jul 26, 2020
1 parent 90e4824 commit b4ac314
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions build.go/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@ ENV \
CGO_ENABLED=0 \
GOOS=linux \
GOARCH=amd64 \
GOVERALLS=0.0.5 \
GOLANGCI=1.27.0 \
STATIK=0.1.7
GOVERALLS=0.0.6 \
GOLANGCI=1.29.0 \
STATIK=0.1.7 \
GORELEASER=0.140.1

RUN \
apk add --no-cache --update tzdata git bash curl && \
Expand Down Expand Up @@ -38,6 +39,12 @@ RUN \
git checkout v${STATIK} && \
go install github.com/rakyll/statik

RUN \
wget https://github.com/goreleaser/goreleaser/releases/download/v${GORELEASER}/goreleaser_Linux_x86_64.tar.gz -O /tmp/goreleaser_Linux_x86_64.tar.gz && \
cd /tmp && tar -zxf /tmp/goreleaser_Linux_x86_64.tar.gz && \
mv /tmp/goreleaser /usr/bin/goreleaser && \
goreleaser -v

ADD coverage.sh /script/coverage.sh
ADD checkvendor.sh /script/checkvendor.sh
ADD git-rev.sh /script/git-rev.sh
Expand Down

0 comments on commit b4ac314

Please sign in to comment.