Skip to content

Commit

Permalink
Merge pull request #34 from steveeJ-forks/init-openshift-release-ci
Browse files Browse the repository at this point in the history
*: add files for (proper) openshift/release integration
  • Loading branch information
smarterclayton authored Jan 7, 2019
2 parents 6d774a5 + 8c09f04 commit bebf5a3
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 0 deletions.
7 changes: 7 additions & 0 deletions OWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# See the OWNERS docs: https://git.k8s.io/community/contributors/guide/owners.md
# This file just uses aliases defined in OWNERS_ALIASES.

approvers:
- installer-approvers
reviewers:
- cincinnati-reviewers
10 changes: 10 additions & 0 deletions OWNERS_ALIASES
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# See the OWNERS_ALIASES docs: https://git.k8s.io/community/contributors/guide/owners.md#OWNERS_ALIASES

aliases:
cincinnati-approvers:
- aaronlevy
- crawford
- smarterclayton
- steveeJ
cincinnati-reviewers:
- lucab
15 changes: 15 additions & 0 deletions dist/openshift-release/Dockerfile.builder
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
FROM centos:7 as builder

RUN yum -y groupinstall 'Development Tools'
RUN yum -y install openssl-devel

ADD https://static.rust-lang.org/dist/rust-1.31.0-x86_64-unknown-linux-gnu.tar.gz rust.tar.gz
RUN tar -xf rust.tar.gz --strip 1
RUN ./install.sh

ENV HOME="/root"

RUN \
mkdir -p $HOME/.cargo/git/ && \
find $HOME/. -type d -exec chmod 777 {} \; && \
find $HOME/. -type f -exec chmod ugo+rw {} \;

0 comments on commit bebf5a3

Please sign in to comment.