Skip to content

Commit

Permalink
build: use -bullseye golang image (#6063)
Browse files Browse the repository at this point in the history
Signed-off-by: Stephan Renatus <stephan@styra.com>
  • Loading branch information
srenatus committed Jun 29, 2023
1 parent a50c134 commit 372293e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ TELEMETRY_URL ?= #Default empty

BUILD_HOSTNAME := $(shell ./build/get-build-hostname.sh)

RELEASE_BUILD_IMAGE := golang:$(GOVERSION)
RELEASE_BUILD_IMAGE := golang:$(GOVERSION)-bullseye

RELEASE_DIR ?= _release/$(VERSION)

Expand Down Expand Up @@ -249,7 +249,7 @@ CI_GOLANG_DOCKER_MAKE := $(DOCKER) run \
-e WASM_ENABLED=$(WASM_ENABLED) \
-e FUZZ_TIME=$(FUZZ_TIME) \
-e TELEMETRY_URL=$(TELEMETRY_URL) \
golang:$(GOVERSION)
$(RELEASE_BUILD_IMAGE)

.PHONY: ci-go-%
ci-go-%: generate
Expand Down Expand Up @@ -486,7 +486,7 @@ check-go-module:
-v $(PWD):/src:Z \
-e 'GOPRIVATE=*' \
--tmpfs /src/.go \
golang:$(GOVERSION) \
$(RELEASE_BUILD_IMAGE) \
/bin/bash -c "git config --system --add safe.directory /src && go mod vendor -v"

######################################################
Expand Down

0 comments on commit 372293e

Please sign in to comment.