Skip to content

Commit

Permalink
Update base image to Debian bullseye
Browse files Browse the repository at this point in the history
Update the base used for our "full" image to debian:bullseye-slim. Will
ensure we get the latest and greatest updates and fixes.
  • Loading branch information
marquiz committed Oct 14, 2022
1 parent 1bd63c7 commit a798b45
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion Tiltfile
Original file line number Diff line number Diff line change
@@ -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")
Expand Down

0 comments on commit a798b45

Please sign in to comment.