Skip to content

Commit

Permalink
Merge pull request #102 from prometheus/bump_version
Browse files Browse the repository at this point in the history
Bump Go version
  • Loading branch information
SuperQ committed Dec 5, 2020
2 parents 920d1e2 + ed3eecc commit 8ba6e49
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion 1.14/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.14.12
VERSION := 1.14.13
DIRNAME := $(shell basename $(CURDIR))
PARENTDIRNAME := $(shell basename $(shell dirname $(CURDIR)))

Expand Down
4 changes: 2 additions & 2 deletions 1.14/base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ RUN \
&& apt-get install -y --no-install-recommends nodejs yarn \
&& rm -rf /var/lib/apt/lists/*

ENV GOLANG_VERSION 1.14.12
ENV GOLANG_VERSION 1.14.13
ENV GOLANG_DOWNLOAD_URL https://golang.org/dl/go$GOLANG_VERSION.linux-amd64.tar.gz
ENV GOLANG_DOWNLOAD_SHA256 fb26f951c88c0685d7df393611189c58e6eabd3c17bdaef37df11355ab8db9d3
ENV GOLANG_DOWNLOAD_SHA256 bfea0c8d7b70c1ad99b0266b321608db57df75820e8f4333efa448a43da01992

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.15/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.15.5
VERSION := 1.15.6
DIRNAME := $(shell basename $(CURDIR))
PARENTDIRNAME := $(shell basename $(shell dirname $(CURDIR)))

Expand Down
4 changes: 2 additions & 2 deletions 1.15/base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ RUN \
&& apt-get install -y --no-install-recommends nodejs yarn \
&& rm -rf /var/lib/apt/lists/*

ENV GOLANG_VERSION 1.15.5
ENV GOLANG_VERSION 1.15.6
ENV GOLANG_DOWNLOAD_URL https://golang.org/dl/go$GOLANG_VERSION.linux-amd64.tar.gz
ENV GOLANG_DOWNLOAD_SHA256 9a58494e8da722c3aef248c9227b0e9c528c7318309827780f16220998180a0d
ENV GOLANG_DOWNLOAD_SHA256 3918e6cc85e7eaaa6f859f1bdbaac772e7a825b0eb423c63d3ae68b21f84b844

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.15-main`, `1.15.5-main` ([1.15/main/Dockerfile](1.15/main/Dockerfile))
- `arm`, `1.15-arm`, `1.15.5-arm` ([1.15/arm/Dockerfile](1.15/arm/Dockerfile))
- `powerpc`, `1.15-powerpc`, `1.15.5-powerpc` ([1.15/powerpc/Dockerfile](1.15/powerpc/Dockerfile))
- `mips`, `1.15-mips`, `1.15.5-mips` ([1.15/mips/Dockerfile](1.15/mips/Dockerfile))
- `s390x`, `1.15-s390x`, `1.15.5-s390x` ([1.15/s390x/Dockerfile](1.15/s390x/Dockerfile))
- `1.14-main`, `1.14.12-main` ([1.14/main/Dockerfile](1.14/main/Dockerfile))
- `arm`, `1.14-arm`, `1.14.12-arm` ([1.14/arm/Dockerfile](1.14/arm/Dockerfile))
- `powerpc`, `1.14-powerpc`, `1.14.12-powerpc` ([1.14/powerpc/Dockerfile](1.14/powerpc/Dockerfile))
- `mips`, `1.14-mips`, `1.14.12-mips` ([1.14/mips/Dockerfile](1.14/mips/Dockerfile))
- `s390x`, `1.14-s390x`, `1.14.12-s390x` ([1.14/s390x/Dockerfile](1.14/s390x/Dockerfile))
- `latest`, `main`, `1.15-main`, `1.15.6-main` ([1.15/main/Dockerfile](1.15/main/Dockerfile))
- `arm`, `1.15-arm`, `1.15.6-arm` ([1.15/arm/Dockerfile](1.15/arm/Dockerfile))
- `powerpc`, `1.15-powerpc`, `1.15.6-powerpc` ([1.15/powerpc/Dockerfile](1.15/powerpc/Dockerfile))
- `mips`, `1.15-mips`, `1.15.6-mips` ([1.15/mips/Dockerfile](1.15/mips/Dockerfile))
- `s390x`, `1.15-s390x`, `1.15.6-s390x` ([1.15/s390x/Dockerfile](1.15/s390x/Dockerfile))
- `1.14-main`, `1.14.13-main` ([1.14/main/Dockerfile](1.14/main/Dockerfile))
- `arm`, `1.14-arm`, `1.14.13-arm` ([1.14/arm/Dockerfile](1.14/arm/Dockerfile))
- `powerpc`, `1.14-powerpc`, `1.14.13-powerpc` ([1.14/powerpc/Dockerfile](1.14/powerpc/Dockerfile))
- `mips`, `1.14-mips`, `1.14.13-mips` ([1.14/mips/Dockerfile](1.14/mips/Dockerfile))
- `s390x`, `1.14-s390x`, `1.14.13-s390x` ([1.14/s390x/Dockerfile](1.14/s390x/Dockerfile))

## Usage

Expand Down

0 comments on commit 8ba6e49

Please sign in to comment.