This commit is contained in:
Aliaksandr Valialkin 2024-06-05 02:54:19 +02:00
parent ecec1d90b9
commit 238115a6e7
No known key found for this signature in database
GPG key ID: 52C003EE2BCDB9EB
5 changed files with 5 additions and 5 deletions

View file

@ -1,4 +1,4 @@
FROM golang:1.22.3 as build-web-stage
FROM golang:1.22.4 as build-web-stage
COPY build /build
WORKDIR /build

View file

@ -6,7 +6,7 @@ ROOT_IMAGE ?= alpine:3.20.0
ROOT_IMAGE_SCRATCH ?= scratch
CERTS_IMAGE := alpine:3.20.0
GO_BUILDER_IMAGE := golang:1.22.3-alpine
GO_BUILDER_IMAGE := golang:1.22.4-alpine
BUILDER_IMAGE := local/builder:2.0.0-$(shell echo $(GO_BUILDER_IMAGE) | tr :/ __)-1
BASE_IMAGE := local/base:1.1.4-$(shell echo $(ROOT_IMAGE) | tr :/ __)-$(shell echo $(CERTS_IMAGE) | tr :/ __)
DOCKER ?= docker

View file

@ -18,7 +18,7 @@ services:
- vlogs
generator:
image: golang:1.22.3-alpine
image: golang:1.22.4-alpine
restart: always
working_dir: /go/src/app
volumes:

View file

@ -2,7 +2,7 @@ version: '3'
services:
generator:
image: golang:1.22.3-alpine
image: golang:1.22.4-alpine
restart: always
working_dir: /go/src/app
volumes:

2
go.mod
View file

@ -1,6 +1,6 @@
module github.com/VictoriaMetrics/VictoriaMetrics
go 1.22.3
go 1.22.4
require (
cloud.google.com/go/storage v1.41.0