Skip to content

Bump to Go 1.11.10 and 1.12.5 #66

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 7, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 1.11/Makefile.COMMON
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ REPOSITORY := quay.io/prometheus
NAME := golang-builder
BRANCH := $(shell git rev-parse --abbrev-ref HEAD)
SUFFIX ?= -$(subst /,-,$(BRANCH))
VERSION := 1.11.9
VERSION := 1.11.10
DIRNAME := $(shell basename $(CURDIR))
PARENTDIRNAME := $(shell basename $(shell dirname $(CURDIR)))

Expand Down
4 changes: 2 additions & 2 deletions 1.11/base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ RUN \
make \
&& rm -rf /var/lib/apt/lists/*

ENV GOLANG_VERSION 1.11.9
ENV GOLANG_VERSION 1.11.10
ENV GOLANG_DOWNLOAD_URL https://golang.org/dl/go$GOLANG_VERSION.linux-amd64.tar.gz
ENV GOLANG_DOWNLOAD_SHA256 e88aa3e39104e3ba6a95a4e05629348b4a1ec82791fb3c941a493ca349730608
ENV GOLANG_DOWNLOAD_SHA256 aefaa228b68641e266d1f23f1d95dba33f17552ba132878b65bb798ffa37e6d0

RUN curl -fsSL "$GOLANG_DOWNLOAD_URL" -o golang.tar.gz \
&& echo "$GOLANG_DOWNLOAD_SHA256 golang.tar.gz" | sha256sum -c - \
Expand Down
2 changes: 1 addition & 1 deletion 1.12/Makefile.COMMON
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ REPOSITORY := quay.io/prometheus
NAME := golang-builder
BRANCH := $(shell git rev-parse --abbrev-ref HEAD)
SUFFIX ?= -$(subst /,-,$(BRANCH))
VERSION := 1.12.4
VERSION := 1.12.5
DIRNAME := $(shell basename $(CURDIR))
PARENTDIRNAME := $(shell basename $(shell dirname $(CURDIR)))

Expand Down
4 changes: 2 additions & 2 deletions 1.12/base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ RUN \
make \
&& rm -rf /var/lib/apt/lists/*

ENV GOLANG_VERSION 1.12.4
ENV GOLANG_VERSION 1.12.5
ENV GOLANG_DOWNLOAD_URL https://golang.org/dl/go$GOLANG_VERSION.linux-amd64.tar.gz
ENV GOLANG_DOWNLOAD_SHA256 d7d1f1f88ddfe55840712dc1747f37a790cbcaa448f6c9cf51bbe10aa65442f5
ENV GOLANG_DOWNLOAD_SHA256 aea86e3c73495f205929cfebba0d63f1382c8ac59be081b6351681415f4063cf

RUN curl -fsSL "$GOLANG_DOWNLOAD_URL" -o golang.tar.gz \
&& echo "$GOLANG_DOWNLOAD_SHA256 golang.tar.gz" | sha256sum -c - \
Expand Down
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@

Docker Builder Image for cross-building Golang Prometheus projects.

- `latest`, `main`, `1.12-main`, `1.12.4-main` ([1.12/main/Dockerfile](1.12/main/Dockerfile))
- `arm`, `1.12-arm`, `1.12.4-arm` ([1.12/arm/Dockerfile](1.12/arm/Dockerfile))
- `powerpc`, `1.12-powerpc`, `1.12.4-powerpc` ([1.12/powerpc/Dockerfile](1.12/powerpc/Dockerfile))
- `mips`, `1.12-mips`, `1.12.4-mips` ([1.12/mips/Dockerfile](1.12/mips/Dockerfile))
- `s390x`, `1.12-s390x`, `1.12.4-s390x` ([1.12/s390x/Dockerfile](1.12/s390x/Dockerfile))
- `1.11-main`, `1.11.9-main` ([1.11/main/Dockerfile](1.11/main/Dockerfile))
- `arm`, `1.11-arm`, `1.11.9-arm` ([1.11/arm/Dockerfile](1.11/arm/Dockerfile))
- `powerpc`, `1.11-powerpc`, `1.11.9-powerpc` ([1.11/powerpc/Dockerfile](1.11/powerpc/Dockerfile))
- `mips`, `1.11-mips`, `1.11.9-mips` ([1.11/mips/Dockerfile](1.11/mips/Dockerfile))
- `s390x`, `1.11-s390x`, `1.11.9-s390x` ([1.11/s390x/Dockerfile](1.11/s390x/Dockerfile))
- `latest`, `main`, `1.12-main`, `1.12.5-main` ([1.12/main/Dockerfile](1.12/main/Dockerfile))
- `arm`, `1.12-arm`, `1.12.5-arm` ([1.12/arm/Dockerfile](1.12/arm/Dockerfile))
- `powerpc`, `1.12-powerpc`, `1.12.5-powerpc` ([1.12/powerpc/Dockerfile](1.12/powerpc/Dockerfile))
- `mips`, `1.12-mips`, `1.12.5-mips` ([1.12/mips/Dockerfile](1.12/mips/Dockerfile))
- `s390x`, `1.12-s390x`, `1.12.5-s390x` ([1.12/s390x/Dockerfile](1.12/s390x/Dockerfile))
- `1.11-main`, `1.11.10-main` ([1.11/main/Dockerfile](1.11/main/Dockerfile))
- `arm`, `1.11-arm`, `1.11.10-arm` ([1.11/arm/Dockerfile](1.11/arm/Dockerfile))
- `powerpc`, `1.11-powerpc`, `1.11.10-powerpc` ([1.11/powerpc/Dockerfile](1.11/powerpc/Dockerfile))
- `mips`, `1.11-mips`, `1.11.10-mips` ([1.11/mips/Dockerfile](1.11/mips/Dockerfile))
- `s390x`, `1.11-s390x`, `1.11.10-s390x` ([1.11/s390x/Dockerfile](1.11/s390x/Dockerfile))

## Usage

Expand Down