Skip to content

Commit 0c07722

Browse files
committed
Use go1.10.1 and go1.9.5
The latest patch versions include two important fixes for the Prometheus project: * golang/go#23995 * golang/go#24059
1 parent c57e50e commit 0c07722

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

1.10/Makefile.COMMON

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ REPOSITORY := quay.io/prometheus
1515
NAME := golang-builder
1616
BRANCH := $(shell git rev-parse --abbrev-ref HEAD)
1717
SUFFIX ?= -$(subst /,-,$(BRANCH))
18-
VERSION := 1.10.0
18+
VERSION := 1.10.1
1919
DIRNAME := $(shell basename $(CURDIR))
2020
PARENTDIRNAME := $(shell basename $(shell dirname $(CURDIR)))
2121

1.10/base/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ RUN \
1212
make \
1313
&& rm -rf /var/lib/apt/lists/*
1414

15-
ENV GOLANG_VERSION 1.10
15+
ENV GOLANG_VERSION 1.10.1
1616
ENV GOLANG_DOWNLOAD_URL https://golang.org/dl/go$GOLANG_VERSION.linux-amd64.tar.gz
17-
ENV GOLANG_DOWNLOAD_SHA256 b5a64335f1490277b585832d1f6c7f8c6c11206cba5cd3f771dcb87b98ad1a33
17+
ENV GOLANG_DOWNLOAD_SHA256 72d820dec546752e5a8303b33b009079c15c2390ce76d67cf514991646c6127b
1818

1919
RUN curl -fsSL "$GOLANG_DOWNLOAD_URL" -o golang.tar.gz \
2020
&& echo "$GOLANG_DOWNLOAD_SHA256 golang.tar.gz" | sha256sum -c - \

1.9/Makefile.COMMON

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ REPOSITORY := quay.io/prometheus
1515
NAME := golang-builder
1616
BRANCH := $(shell git rev-parse --abbrev-ref HEAD)
1717
SUFFIX ?= -$(subst /,-,$(BRANCH))
18-
VERSION := 1.9.4
18+
VERSION := 1.9.5
1919
DIRNAME := $(shell basename $(CURDIR))
2020
PARENTDIRNAME := $(shell basename $(shell dirname $(CURDIR)))
2121

1.9/base/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ RUN \
1212
make \
1313
&& rm -rf /var/lib/apt/lists/*
1414

15-
ENV GOLANG_VERSION 1.9.4
15+
ENV GOLANG_VERSION 1.9.5
1616
ENV GOLANG_DOWNLOAD_URL https://golang.org/dl/go$GOLANG_VERSION.linux-amd64.tar.gz
17-
ENV GOLANG_DOWNLOAD_SHA256 15b0937615809f87321a457bb1265f946f9f6e736c563d6c5e0bd2c22e44f779
17+
ENV GOLANG_DOWNLOAD_SHA256 d21bdabf4272c2248c41b45cec606844bdc5c7c04240899bde36c01a28c51ee7
1818

1919
RUN curl -fsSL "$GOLANG_DOWNLOAD_URL" -o golang.tar.gz \
2020
&& echo "$GOLANG_DOWNLOAD_SHA256 golang.tar.gz" | sha256sum -c - \

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77

88
Docker Builder Image for cross-building Golang Prometheus projects.
99

10-
- `latest`, `main`, `1.10-main`, `1.10.0-main` ([1.10/main/Dockerfile](1.10/main/Dockerfile))
11-
- `arm`, `1.10-arm`, `1.10.0-arm` ([1.10/arm/Dockerfile](1.10/arm/Dockerfile))
12-
- `powerpc`, `1.10-powerpc`, `1.10.0-powerpc` ([1.10/powerpc/Dockerfile](1.10/powerpc/Dockerfile))
13-
- `mips`, `1.10-mips`, `1.10.0-mips` ([1.10/mips/Dockerfile](1.10/mips/Dockerfile))
14-
- `1.9-main`, `1.9.4-main` ([1.9/main/Dockerfile](1.9/main/Dockerfile))
15-
- `1.9-arm`, `1.9.4-arm` ([1.9/arm/Dockerfile](1.9/arm/Dockerfile))
16-
- `1.9-powerpc`, `1.9.4-powerpc` ([1.9/powerpc/Dockerfile](1.9/powerpc/Dockerfile))
17-
- `1.9-mips`, `1.9.4-mips` ([1.9/mips/Dockerfile](1.9/mips/Dockerfile))
10+
- `latest`, `main`, `1.10-main`, `1.10.1-main` ([1.10/main/Dockerfile](1.10/main/Dockerfile))
11+
- `arm`, `1.10-arm`, `1.10.1-arm` ([1.10/arm/Dockerfile](1.10/arm/Dockerfile))
12+
- `powerpc`, `1.10-powerpc`, `1.10.1-powerpc` ([1.10/powerpc/Dockerfile](1.10/powerpc/Dockerfile))
13+
- `mips`, `1.10-mips`, `1.10.1-mips` ([1.10/mips/Dockerfile](1.10/mips/Dockerfile))
14+
- `1.9-main`, `1.9.5-main` ([1.9/main/Dockerfile](1.9/main/Dockerfile))
15+
- `1.9-arm`, `1.9.5-arm` ([1.9/arm/Dockerfile](1.9/arm/Dockerfile))
16+
- `1.9-powerpc`, `1.9.5-powerpc` ([1.9/powerpc/Dockerfile](1.9/powerpc/Dockerfile))
17+
- `1.9-mips`, `1.9.5-mips` ([1.9/mips/Dockerfile](1.9/mips/Dockerfile))
1818

1919
## Usage
2020

0 commit comments

Comments
 (0)