Skip to content

Commit 48310e0

Browse files
authored
Update Docker builder image to Go 1.13 (#53)
With #47 we seem to have updated our `go.mod` to Go 1.13. Our docker Image builders were trying to use Go 1.12 to build and kept failing due to a dependency problem. It appears `go.mod`'s are incompatible across 1.12 and 1.13.
1 parent 87d1062 commit 48310e0

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

cmd/chunktool/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.12.5-stretch as build
1+
FROM golang:1.13.12-stretch as build
22
ARG GOARCH="amd64"
33
COPY . /build_dir
44
WORKDIR /build_dir

cmd/cortextool/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.12.5-stretch as build
1+
FROM golang:1.13.12-stretch as build
22
ARG GOARCH="amd64"
33
COPY . /build_dir
44
WORKDIR /build_dir

cmd/logtool/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.12.5-stretch as build
1+
FROM golang:1.13.12-stretch as build
22
ARG GOARCH="amd64"
33
COPY . /build_dir
44
WORKDIR /build_dir

0 commit comments

Comments
 (0)