-
Notifications
You must be signed in to change notification settings - Fork 168
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Right now, I want to test the new ostree code to inject signatures: ostreedev/ostree-rs-ext#301 And I want to do it *before* releasing a new rpm-ostree. Add a new Dockerfile with pulls from our continuous COPR. This is effectively the coreos-assembler dual of coreos/fedora-coreos-config#1710
- Loading branch information
Showing
2 changed files
with
15 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
FROM registry.ci.openshift.org/coreos/coreos-assembler:latest | ||
USER root | ||
ADD fcos-continuous.repo /etc/yum.repos.d | ||
RUN yum -y update | ||
USER builder |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
[copr:copr.fedorainfracloud.org:group_CoreOS:continuous] | ||
name=Copr repo for continuous owned by @CoreOS | ||
baseurl=https://download.copr.fedorainfracloud.org/results/@CoreOS/continuous/fedora-$releasever-$basearch/ | ||
type=rpm-md | ||
skip_if_unavailable=True | ||
gpgcheck=1 | ||
gpgkey=https://download.copr.fedorainfracloud.org/results/@CoreOS/continuous/pubkey.gpg | ||
repo_gpgcheck=0 | ||
enabled=1 | ||
enabled_metadata=1 |