From 83f87ea55cec0b6503f8bc8760332db6f9c00e32 Mon Sep 17 00:00:00 2001 From: Ed Bartosh Date: Mon, 27 Sep 2021 11:53:45 +0300 Subject: [PATCH] change golang base to Debian bullseye Signed-off-by: Ed Bartosh --- build/docker/intel-deviceplugin-operator.Dockerfile | 2 +- build/docker/intel-dsa-plugin.Dockerfile | 2 +- build/docker/intel-fpga-admissionwebhook.Dockerfile | 2 +- build/docker/intel-fpga-initcontainer.Dockerfile | 2 +- build/docker/intel-fpga-plugin.Dockerfile | 2 +- build/docker/intel-gpu-initcontainer.Dockerfile | 2 +- build/docker/intel-gpu-plugin.Dockerfile | 2 +- build/docker/intel-qat-plugin-kerneldrv.Dockerfile | 2 +- build/docker/intel-qat-plugin.Dockerfile | 2 +- build/docker/intel-sgx-admissionwebhook.Dockerfile | 2 +- build/docker/intel-sgx-initcontainer.Dockerfile | 2 +- build/docker/intel-sgx-plugin.Dockerfile | 2 +- build/docker/intel-vpu-plugin.Dockerfile | 2 +- 13 files changed, 13 insertions(+), 13 deletions(-) diff --git a/build/docker/intel-deviceplugin-operator.Dockerfile b/build/docker/intel-deviceplugin-operator.Dockerfile index 9e5b72f0..02c04e16 100644 --- a/build/docker/intel-deviceplugin-operator.Dockerfile +++ b/build/docker/intel-deviceplugin-operator.Dockerfile @@ -18,7 +18,7 @@ # # This is used on release branches before tagging a stable version. # The main branch defaults to using the latest Golang base image. -ARG GOLANG_BASE=golang:1.16-buster +ARG GOLANG_BASE=golang:1.16-bullseye FROM ${GOLANG_BASE} as builder diff --git a/build/docker/intel-dsa-plugin.Dockerfile b/build/docker/intel-dsa-plugin.Dockerfile index 8dc8e489..c06ae9c4 100644 --- a/build/docker/intel-dsa-plugin.Dockerfile +++ b/build/docker/intel-dsa-plugin.Dockerfile @@ -18,7 +18,7 @@ # # This is used on release branches before tagging a stable version. # The main branch defaults to using the latest Golang base image. -ARG GOLANG_BASE=golang:1.16-buster +ARG GOLANG_BASE=golang:1.16-bullseye FROM ${GOLANG_BASE} as builder diff --git a/build/docker/intel-fpga-admissionwebhook.Dockerfile b/build/docker/intel-fpga-admissionwebhook.Dockerfile index 23ae0bb5..5ba8e940 100644 --- a/build/docker/intel-fpga-admissionwebhook.Dockerfile +++ b/build/docker/intel-fpga-admissionwebhook.Dockerfile @@ -18,7 +18,7 @@ # # This is used on release branches before tagging a stable version. # The main branch defaults to using the latest Golang base image. -ARG GOLANG_BASE=golang:1.16-buster +ARG GOLANG_BASE=golang:1.16-bullseye FROM ${GOLANG_BASE} as builder diff --git a/build/docker/intel-fpga-initcontainer.Dockerfile b/build/docker/intel-fpga-initcontainer.Dockerfile index 4abcb139..a3aaa068 100644 --- a/build/docker/intel-fpga-initcontainer.Dockerfile +++ b/build/docker/intel-fpga-initcontainer.Dockerfile @@ -18,7 +18,7 @@ # # This is used on release branches before tagging a stable version. # The main branch defaults to using the latest Golang base image. -ARG GOLANG_BASE=golang:1.16-buster +ARG GOLANG_BASE=golang:1.16-bullseye FROM ${GOLANG_BASE} as builder diff --git a/build/docker/intel-fpga-plugin.Dockerfile b/build/docker/intel-fpga-plugin.Dockerfile index 388202ac..92a04bc1 100644 --- a/build/docker/intel-fpga-plugin.Dockerfile +++ b/build/docker/intel-fpga-plugin.Dockerfile @@ -18,7 +18,7 @@ # # This is used on release branches before tagging a stable version. # The main branch defaults to using the latest Golang base image. -ARG GOLANG_BASE=golang:1.16-buster +ARG GOLANG_BASE=golang:1.16-bullseye FROM ${GOLANG_BASE} as builder diff --git a/build/docker/intel-gpu-initcontainer.Dockerfile b/build/docker/intel-gpu-initcontainer.Dockerfile index 52c6845f..ed44f4d7 100644 --- a/build/docker/intel-gpu-initcontainer.Dockerfile +++ b/build/docker/intel-gpu-initcontainer.Dockerfile @@ -18,7 +18,7 @@ # # This is used on release branches before tagging a stable version. # The main branch defaults to using the latest Golang base image. -ARG GOLANG_BASE=golang:1.16-buster +ARG GOLANG_BASE=golang:1.16-bullseye FROM ${GOLANG_BASE} as builder diff --git a/build/docker/intel-gpu-plugin.Dockerfile b/build/docker/intel-gpu-plugin.Dockerfile index 2fe2a982..c1e52de5 100644 --- a/build/docker/intel-gpu-plugin.Dockerfile +++ b/build/docker/intel-gpu-plugin.Dockerfile @@ -18,7 +18,7 @@ # # This is used on release branches before tagging a stable version. # The main branch defaults to using the latest Golang base image. -ARG GOLANG_BASE=golang:1.16-buster +ARG GOLANG_BASE=golang:1.16-bullseye FROM ${GOLANG_BASE} as builder diff --git a/build/docker/intel-qat-plugin-kerneldrv.Dockerfile b/build/docker/intel-qat-plugin-kerneldrv.Dockerfile index 050db210..2df3658e 100644 --- a/build/docker/intel-qat-plugin-kerneldrv.Dockerfile +++ b/build/docker/intel-qat-plugin-kerneldrv.Dockerfile @@ -18,7 +18,7 @@ # # This is used on release branches before tagging a stable version. # The main branch defaults to using the latest Golang base image. -ARG GOLANG_BASE=golang:1.16-buster +ARG GOLANG_BASE=golang:1.16-bullseye FROM ${GOLANG_BASE} as builder diff --git a/build/docker/intel-qat-plugin.Dockerfile b/build/docker/intel-qat-plugin.Dockerfile index 8d4c7d32..4c335509 100644 --- a/build/docker/intel-qat-plugin.Dockerfile +++ b/build/docker/intel-qat-plugin.Dockerfile @@ -18,7 +18,7 @@ # # This is used on release branches before tagging a stable version. # The main branch defaults to using the latest Golang base image. -ARG GOLANG_BASE=golang:1.16-buster +ARG GOLANG_BASE=golang:1.16-bullseye FROM ${GOLANG_BASE} as builder diff --git a/build/docker/intel-sgx-admissionwebhook.Dockerfile b/build/docker/intel-sgx-admissionwebhook.Dockerfile index 08f8c95a..47a34b6d 100644 --- a/build/docker/intel-sgx-admissionwebhook.Dockerfile +++ b/build/docker/intel-sgx-admissionwebhook.Dockerfile @@ -18,7 +18,7 @@ # # This is used on release branches before tagging a stable version. # The main branch defaults to using the latest Golang base image. -ARG GOLANG_BASE=golang:1.16-buster +ARG GOLANG_BASE=golang:1.16-bullseye FROM ${GOLANG_BASE} as builder diff --git a/build/docker/intel-sgx-initcontainer.Dockerfile b/build/docker/intel-sgx-initcontainer.Dockerfile index 79d57963..d0383957 100644 --- a/build/docker/intel-sgx-initcontainer.Dockerfile +++ b/build/docker/intel-sgx-initcontainer.Dockerfile @@ -18,7 +18,7 @@ # # This is used on release branches before tagging a stable version. # The main branch defaults to using the latest Golang base image. -ARG GOLANG_BASE=golang:1.16-buster +ARG GOLANG_BASE=golang:1.16-bullseye FROM ${GOLANG_BASE} as builder diff --git a/build/docker/intel-sgx-plugin.Dockerfile b/build/docker/intel-sgx-plugin.Dockerfile index a0e9e59a..308f58ca 100644 --- a/build/docker/intel-sgx-plugin.Dockerfile +++ b/build/docker/intel-sgx-plugin.Dockerfile @@ -18,7 +18,7 @@ # # This is used on release branches before tagging a stable version. # The main branch defaults to using the latest Golang base image. -ARG GOLANG_BASE=golang:1.16-buster +ARG GOLANG_BASE=golang:1.16-bullseye FROM ${GOLANG_BASE} as builder diff --git a/build/docker/intel-vpu-plugin.Dockerfile b/build/docker/intel-vpu-plugin.Dockerfile index 908859e9..cbca3ca2 100644 --- a/build/docker/intel-vpu-plugin.Dockerfile +++ b/build/docker/intel-vpu-plugin.Dockerfile @@ -18,7 +18,7 @@ # # This is used on release branches before tagging a stable version. # The main branch defaults to using the latest Golang base image. -ARG GOLANG_BASE=golang:1.16-buster +ARG GOLANG_BASE=golang:1.16-bullseye FROM ${GOLANG_BASE} as builder