1
0
Fork 0
mirror of https://github.com/kubernetes-sigs/node-feature-discovery.git synced 2024-12-14 11:57:51 +00:00

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.
This commit is contained in:
Markus Lehtonen 2022-10-13 15:17:50 +03:00
parent 1bd63c7a38
commit a798b4517d
2 changed files with 2 additions and 2 deletions

View file

@ -9,7 +9,7 @@ IMAGE_BUILD_EXTRA_OPTS ?=
IMAGE_PUSH_CMD ?= docker push IMAGE_PUSH_CMD ?= docker push
CONTAINER_RUN_CMD ?= docker run CONTAINER_RUN_CMD ?= docker run
BUILDER_IMAGE ?= golang:1.19-bullseye 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 BASE_IMAGE_MINIMAL ?= gcr.io/distroless/base
# Docker base command for working with html documentation. # Docker base command for working with html documentation.

View file

@ -1,7 +1,7 @@
# -*- mode: Python -*- # -*- mode: Python -*-
BASE_IMAGE_MINIMAL="gcr.io/distroless/base" 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" BUILDER_IMAGE="golang:1.19-bullseye"
HOSTMOUNT_PREFIX="/host-" HOSTMOUNT_PREFIX="/host-"
IMAGE_TAG_NAME = os.getenv('IMAGE_TAG_NAME', "master") IMAGE_TAG_NAME = os.getenv('IMAGE_TAG_NAME', "master")