Merge pull request #538 from vmware-tanzu/dependabot/docker/debian-10.9-slim

Bump debian from 10.8-slim to 10.9-slim
This commit is contained in:
Matt Moyer 2021-03-31 06:00:27 -07:00 committed by GitHub
commit 081de8da62
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -27,11 +27,11 @@ RUN \
./cmd/local-user-authenticator/... ./cmd/local-user-authenticator/...
# Use a Debian slim image to grab a reasonable default CA bundle. # Use a Debian slim image to grab a reasonable default CA bundle.
FROM debian:10.8-slim AS get-ca-bundle-env FROM debian:10.9-slim AS get-ca-bundle-env
RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates && rm -rf /var/lib/apt/lists/* /var/cache/debconf/* RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates && rm -rf /var/lib/apt/lists/* /var/cache/debconf/*
# Use a runtime image based on Debian slim. # Use a runtime image based on Debian slim.
FROM debian:10.8-slim FROM debian:10.9-slim
COPY --from=get-ca-bundle-env /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt COPY --from=get-ca-bundle-env /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
# Copy the binaries from the build-env stage. # Copy the binaries from the build-env stage.