From 2232edb6b014651324804a129da89c4aa84faf7a Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Wed, 28 Aug 2019 20:07:30 +0000 Subject: [PATCH] ci: Add prow Dockerfile This is an exact copy of https://github.com/ostreedev/ostree/pull/1906 for now. From that commit message: I'd like to add OpenShift's prow to this repository. Let's start by adding a Dockerfile - it doesn't really do anything besides build. However...I've lately been thinking about e.g. shipping the ostree tests as an image, and then e.g. we could test FCOS by running that container (which would orchestrate the host's ostree). Anyways, not doing that right now but this is a start. --- ci/prow/Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 ci/prow/Dockerfile diff --git a/ci/prow/Dockerfile b/ci/prow/Dockerfile new file mode 100644 index 0000000000..b1f83c0190 --- /dev/null +++ b/ci/prow/Dockerfile @@ -0,0 +1,4 @@ +FROM registry.fedoraproject.org/fedora:30 +WORKDIR /src +COPY . . +RUN ./ci/build.sh