Update image base to gcr.io/distroless/base-debian10:latest

This change:
* Updates the base image be based on `buster` (vs. the default `stretch`)
* Consumes the fix for [CVE-2021-3449](https://security-tracker.debian.org/tracker/CVE-2021-3449) in https://github.com/GoogleContainerTools/distroless/pull/700
This commit is contained in:
Jake Sanders 2021-03-25 12:52:34 -07:00 committed by GitHub
parent 4333e5caa7
commit 2c165506bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,6 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
FROM gcr.io/distroless/base:latest
FROM gcr.io/distroless/base-debian10:latest
ADD apiextensions-apiserver /
ENTRYPOINT ["/apiextensions-apiserver"]