Skip to content

Commit 72c408b

Browse files
thaJeztahameyag
authored andcommitted
Update Golang to 1.13.15
Signed-off-by: Sebastiaan van Stijn <[email protected]> (cherry picked from commit 584728e) Signed-off-by: Ameya Gawde <[email protected]>
1 parent e901207 commit 72c408b

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
# Needed to install go
1212
OS: linux
1313
ARCH: amd64
14-
GOVERSION: 1.11
14+
GOVERSION: 1.13
1515
# Needed to install protoc
1616
PROTOC_VERSION: 3.6.1
1717

Dockerfile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# NOTE(dperny): for some reason, alpine was giving me trouble
2-
FROM golang:1.11.0-stretch
2+
ARG GO_VERSION=1.13.15
3+
ARG DEBIAN_FRONTEND=noninteractive
4+
ARG BASE_DEBIAN_DISTRO="buster"
5+
ARG GOLANG_IMAGE="golang:${GO_VERSION}-${BASE_DEBIAN_DISTRO}"
6+
7+
FROM ${GOLANG_IMAGE}
38

49
RUN apt-get update && apt-get install -y make git unzip
510

0 commit comments

Comments
 (0)