Use Go 1.10.1

This commit is contained in:
Łukasz Mierzwa
2018-04-17 22:08:50 -07:00
parent bb4e6e0524
commit c121e2e654
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
defaults_go: &DEFAULTS_GO
language: go
go: "1.10"
go: "1.10.1"
cache:
directories:
- vendor

View File

@@ -3,7 +3,7 @@ RUN apk add --update make git
COPY . /unsee
RUN make -C /unsee webpack
FROM golang:1.10-alpine as go-builder
FROM golang:1.10.1-alpine as go-builder
COPY --from=nodejs-builder /unsee /go/src/github.com/cloudflare/unsee
ARG VERSION
RUN apk add --update make git