From 07fc280f967bf3e165383d5f4e3c3ae49475f10c Mon Sep 17 00:00:00 2001 From: Markus Lehtonen Date: Thu, 13 Oct 2022 15:13:05 +0300 Subject: [PATCH] Tiltfile: update builder image to golang:1.19-bullseye Sync with the Makefile. --- Tiltfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Tiltfile b/Tiltfile index 98002d79aa..e9a99cb6f8 100644 --- a/Tiltfile +++ b/Tiltfile @@ -2,7 +2,7 @@ BASE_IMAGE_MINIMAL="gcr.io/distroless/base" BASE_IMAGE_FULL="debian:buster-slim" -BUILDER_IMAGE="golang:1.18-buster" +BUILDER_IMAGE="golang:1.19-bullseye" HOSTMOUNT_PREFIX="/host-" IMAGE_TAG_NAME = os.getenv('IMAGE_TAG_NAME', "master") IMAGE_REGISTRY = os.getenv('IMAGE_REGISTRY', "gcr.io/k8s-staging-nfd") @@ -36,4 +36,4 @@ def deploy_nfd(): # Actual calls to the functions build_image() -deploy_nfd() \ No newline at end of file +deploy_nfd()