init commit
This commit is contained in:
commit
9d83fa256a
|
|
@ -0,0 +1,11 @@
|
||||||
|
FROM quay.io/buildah/upstream:latest
|
||||||
|
|
||||||
|
# Add skopeo.
|
||||||
|
RUN dnf install -y skopeo \
|
||||||
|
--exclude container-selinux \
|
||||||
|
--enablerepo=updates-testing
|
||||||
|
|
||||||
|
# Add wget, use it to install cosign.
|
||||||
|
RUN dnf install -y wget && \
|
||||||
|
wget https://github.com/sigstore/cosign/releases/download/v2.5.2/cosign-2.5.2-1.x86_64.rpm && \
|
||||||
|
rpm -ivh cosign*.rpm
|
||||||
|
|
@ -0,0 +1,4 @@
|
||||||
|
FROM registry.fedoraproject.org/fedora:latest
|
||||||
|
|
||||||
|
RUN dnf install -y wget
|
||||||
|
RUN useradd -m -G wheel -s /bin/bash -u 1000 test
|
||||||
Loading…
Reference in New Issue