diff --git a/openshift-ci/Dockerfile b/openshift-ci/Dockerfile new file mode 100644 index 0000000..c121deb --- /dev/null +++ b/openshift-ci/Dockerfile @@ -0,0 +1,18 @@ +FROM registry.access.redhat.com/ubi9/ubi + +# rpms required for building and running test suites +RUN dnf -y install \ + jq \ + git \ + make \ + gettext \ + which \ + skopeo \ + findutils \ + gcc \ + python3 \ + ansible \ + diffutils \ + && dnf clean all + +ENTRYPOINT [ "/bin/bash" ]