From 1e49cc362e229792a965c9ee67b91e1228dbfe15 Mon Sep 17 00:00:00 2001 From: Tamal Saha Date: Wed, 15 Mar 2023 22:12:24 -0700 Subject: [PATCH] Use ghcr.io for appscode/golang-dev (#21) Signed-off-by: Tamal Saha --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 673da94..02acabe 100644 --- a/Makefile +++ b/Makefile @@ -53,8 +53,8 @@ BIN_PLATFORMS := $(DOCKER_PLATFORMS) windows/amd64 darwin/amd64 OS := $(if $(GOOS),$(GOOS),$(shell go env GOOS)) ARCH := $(if $(GOARCH),$(GOARCH),$(shell go env GOARCH)) -GO_VERSION ?= 1.19 -BUILD_IMAGE ?= appscode/golang-dev:$(GO_VERSION) +GO_VERSION ?= 1.20 +BUILD_IMAGE ?= ghcr.io/appscode/golang-dev:$(GO_VERSION) OUTBIN = bin/$(BIN)-$(OS)-$(ARCH) ifeq ($(OS),windows)