From a798b4517d4bb570a26f702698e0731cbbf083fd Mon Sep 17 00:00:00 2001 From: Markus Lehtonen Date: Thu, 13 Oct 2022 15:17:50 +0300 Subject: [PATCH] Update base image to Debian bullseye Update the base used for our "full" image to debian:bullseye-slim. Will ensure we get the latest and greatest updates and fixes. --- Makefile | 2 +- Tiltfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 914a7a813..664ff230b 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ IMAGE_BUILD_EXTRA_OPTS ?= IMAGE_PUSH_CMD ?= docker push CONTAINER_RUN_CMD ?= docker run BUILDER_IMAGE ?= golang:1.19-bullseye -BASE_IMAGE_FULL ?= debian:buster-slim +BASE_IMAGE_FULL ?= debian:bullseye-slim BASE_IMAGE_MINIMAL ?= gcr.io/distroless/base # Docker base command for working with html documentation. diff --git a/Tiltfile b/Tiltfile index e9a99cb6f..332a43880 100644 --- a/Tiltfile +++ b/Tiltfile @@ -1,7 +1,7 @@ # -*- mode: Python -*- BASE_IMAGE_MINIMAL="gcr.io/distroless/base" -BASE_IMAGE_FULL="debian:buster-slim" +BASE_IMAGE_FULL="debian:bullseye-slim" BUILDER_IMAGE="golang:1.19-bullseye" HOSTMOUNT_PREFIX="/host-" IMAGE_TAG_NAME = os.getenv('IMAGE_TAG_NAME', "master")