-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Optimize spiffe-vault container and spiffe-vault-cosign example conta…
…iner Signed-off-by: Marco Franssen <[email protected]>
- Loading branch information
1 parent
b9b4b83
commit 22690f8
Showing
2 changed files
with
3 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,5 @@ | ||
FROM gcr.io/projectsigstore/cosign:v1.13.1 as cosign-bin | ||
|
||
FROM docker:20.10.21-alpine3.16 as docker-bin | ||
|
||
FROM philipssoftware/spiffe-vault:v0.4.0 | ||
FROM philipssoftware/spiffe-vault:v0.5.0 | ||
LABEL maintainer="[email protected]" | ||
ENV DOCKER_CERT_PATH=/certs/client | ||
COPY --from=docker-bin /usr/local/bin/docker /usr/local/bin/docker | ||
COPY --from=cosign-bin /ko-app/cosign /usr/local/bin/cosign | ||
COPY --from=docker:20.10.21-alpine3.16 /usr/local/bin/docker /usr/local/bin/docker | ||
COPY --from=gcr.io/projectsigstore/cosign:v1.13.1 /ko-app/cosign /usr/local/bin/cosign |