mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
deployment/docker: update Go builder from Go1.18.5 to Go1.19.0
See https://tip.golang.org/doc/go1.19 Notable changes: * GOMEMLIMIT environment variable - see https://tip.golang.org/doc/gc-guide * Faster CPU profiler * Faster sort algorithm
This commit is contained in:
parent
9f37935819
commit
2105c43982
2 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
FROM golang:1.18.4 as build-web-stage
|
||||
FROM golang:1.19.0 as build-web-stage
|
||||
COPY build /build
|
||||
|
||||
WORKDIR /build
|
||||
|
|
|
@ -4,7 +4,7 @@ DOCKER_NAMESPACE := victoriametrics
|
|||
|
||||
ROOT_IMAGE ?= alpine:3.16.1
|
||||
CERTS_IMAGE := alpine:3.16.1
|
||||
GO_BUILDER_IMAGE := golang:1.18.5-alpine
|
||||
GO_BUILDER_IMAGE := golang:1.19.0-alpine
|
||||
BUILDER_IMAGE := local/builder:2.0.0-$(shell echo $(GO_BUILDER_IMAGE) | tr :/ __)-1
|
||||
BASE_IMAGE := local/base:1.1.3-$(shell echo $(ROOT_IMAGE) | tr :/ __)-$(shell echo $(CERTS_IMAGE) | tr :/ __)
|
||||
|
||||
|
|
Loading…
Reference in a new issue