Files
pinniped/dockerfiles/deployment-yaml-formatter/Dockerfile
Ryan Richard 12760d7706 Merge pull request #2211 from vmware-tanzu/dependabot/docker/dockerfiles/deployment-yaml-formatter/ci/mikefarah/yq-4.45.1
Bump mikefarah/yq from 4.44.5 to 4.45.1 in /dockerfiles/deployment-yaml-formatter
2025-02-24 12:00:36 -08:00

17 lines
642 B
Docker

# Copyright 2020-2024 the Pinniped contributors. All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0
FROM mikefarah/yq:4.45.1 AS yq
FROM debian:12.9-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