Skip to content

Commit

Permalink
all: use Go 1.14 for building in docker images (#2345)
Browse files Browse the repository at this point in the history
### What
Use Go 1.14 for building in docker images.

### Why
We recently switched to building with Go 1.13 and 1.14 in #2325 and we should use the latest version for our builds.
  • Loading branch information
leighmcculloch authored Mar 3, 2020
1 parent a984b8a commit ef8417b
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion exp/services/recoverysigner/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.13-stretch as build
FROM golang:1.14-stretch as build

ADD . /src/recoverysigner
WORKDIR /src/recoverysigner
Expand Down
2 changes: 1 addition & 1 deletion exp/services/webauth/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.13-stretch as build
FROM golang:1.14-stretch as build

ADD . /src/webauth
WORKDIR /src/webauth
Expand Down
4 changes: 2 additions & 2 deletions services/horizon/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.13-stretch AS builder
FROM golang:1.14-stretch AS builder

WORKDIR /go/src/github.com/stellar/go
COPY go.mod go.sum ./
Expand All @@ -13,4 +13,4 @@ RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates

COPY --from=builder /go/bin/horizon ./

ENTRYPOINT ["./horizon"]
ENTRYPOINT ["./horizon"]
2 changes: 1 addition & 1 deletion services/keystore/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.13-stretch as build
FROM golang:1.14-stretch as build

ADD . /src/keystore
WORKDIR /src/keystore
Expand Down
2 changes: 1 addition & 1 deletion services/ticker/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.13-stretch as build
FROM golang:1.14-stretch as build

ADD . /src/ticker
WORKDIR /src/ticker
Expand Down

0 comments on commit ef8417b

Please sign in to comment.