Skip to content

Commit

Permalink
feat: add cosign to rootfs (#181)
Browse files Browse the repository at this point in the history
Issue #, if available:

*Description of changes:*
Add cosign binary to rootfs

*Testing done:*


- [X] I've reviewed the guidance in CONTRIBUTING.md


#### License Acceptance

By submitting this pull request, I confirm that my contribution is made
under the terms of the Apache 2.0 license.

---------

Signed-off-by: Vishwas Siravara <[email protected]>
  • Loading branch information
vsiravar authored Oct 10, 2023
1 parent 2405075 commit 194b607
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ RUN dnf install -y \
iptables \
fuse-sshfs

# install cosign
RUN curl -L -O https://github.com/sigstore/cosign/releases/download/v2.0.1/cosign-2.0.1.x86_64.rpm && \
sudo rpm -ivh cosign-2.0.1.x86_64.rpm && \
rm -rf cosign-2.0.1.x86_64.rpm

RUN systemctl enable cloud-init cloud-init-local cloud-config cloud-final

# enable systemd
Expand Down

0 comments on commit 194b607

Please sign in to comment.