mirror of
https://github.com/vmware-tanzu/pinniped.git
synced 2026-05-02 05:46:01 +00:00
Bumps debian from 12.10-slim to 12.11-slim. --- updated-dependencies: - dependency-name: debian dependency-version: 12.11-slim dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
17 lines
643 B
Docker
17 lines
643 B
Docker
# Copyright 2020-2024 the Pinniped contributors. All Rights Reserved.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
FROM mikefarah/yq:4.45.4 AS yq
|
|
|
|
FROM debian:12.11-slim
|
|
|
|
# Note: libdigest-sha-perl is to get shasum, which is used when installing Carvel tools below.
|
|
RUN apt-get update && apt-get install -y ca-certificates jq curl libdigest-sha-perl && rm -rf /var/lib/apt/lists/*
|
|
|
|
# Install Carvel tools.
|
|
RUN bash -c "set -eo pipefail; curl -fsL https://carvel.dev/install.sh | bash" && \
|
|
ytt version && kapp version && kbld version && kwt version && imgpkg version && vendir version
|
|
|
|
# Install yq.
|
|
COPY --from=yq /usr/bin/yq /usr/local/bin/yq
|