From 3ef600ce78328d410a0355546817c10d90143cd4 Mon Sep 17 00:00:00 2001 From: Balazs Gibizer Date: Fri, 16 Feb 2024 11:07:33 +0100 Subject: [PATCH] Use qualified container image names in Dockerfile After we bumped to use the golang:1.20 image content provider job fails with. ``` Error: creating build container: short-name resolution enforced but cannot prompt without a TTY ``` --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1289a26b3..17dd7a381 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -ARG GOLANG_BUILDER=golang:1.20 +ARG GOLANG_BUILDER=docker.io/library/golang:1.20 ARG OPERATOR_BASE_IMAGE=gcr.io/distroless/static:nonroot # Build the manager binary