Files
pinniped/dockerfiles/crane/Dockerfile
Joshua Casey ad50933d72 Merge pull request #2602 from vmware/dependabot/docker/dockerfiles/crane/ci/golang-1.25.1
Bump golang from 1.25.0 to 1.25.1 in /dockerfiles/crane
2025-09-09 09:18:04 -05:00

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.47.2 AS yq
FROM golang:1.25.1
COPY --from=yq /usr/bin/yq /usr/local/bin
COPY --from=crane /ko-app/crane /usr/local/bin
ENTRYPOINT ["bash"]