We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e901207 commit 72c408bCopy full SHA for 72c408b
.circleci/config.yml
@@ -11,7 +11,7 @@ jobs:
11
# Needed to install go
12
OS: linux
13
ARCH: amd64
14
- GOVERSION: 1.11
+ GOVERSION: 1.13
15
# Needed to install protoc
16
PROTOC_VERSION: 3.6.1
17
Dockerfile
@@ -1,5 +1,10 @@
1
# NOTE(dperny): for some reason, alpine was giving me trouble
2
-FROM golang:1.11.0-stretch
+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}
8
9
RUN apt-get update && apt-get install -y make git unzip
10
0 commit comments