Files
pinniped/dockerfiles/crane/Dockerfile
Joshua Casey 39ab459b55 Merge pull request #2478 from vmware/dependabot/docker/dockerfiles/crane/ci/golang-1.24.5
Bump golang from 1.24.4 to 1.24.5 in /dockerfiles/crane
2025-07-24 08:15:57 -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.1 AS yq
FROM golang:1.24.5
COPY --from=yq /usr/bin/yq /usr/local/bin
COPY --from=crane /ko-app/crane /usr/local/bin
ENTRYPOINT ["bash"]