mirror of
https://github.com/vmware-tanzu/pinniped.git
synced 2026-02-04 03:52:41 +00:00
Bumps mikefarah/yq from 4.49.2 to 4.50.1. --- updated-dependencies: - dependency-name: mikefarah/yq dependency-version: 4.50.1 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
11 lines
317 B
Docker
11 lines
317 B
Docker
# Copyright 2020-2025 the Pinniped contributors. All Rights Reserved.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
FROM gcr.io/go-containerregistry/crane as crane
|
|
FROM mikefarah/yq:4.50.1 AS yq
|
|
|
|
FROM golang:1.25.5
|
|
COPY --from=yq /usr/bin/yq /usr/local/bin
|
|
COPY --from=crane /ko-app/crane /usr/local/bin
|
|
ENTRYPOINT ["bash"]
|