Skip to content

Commit

Permalink
Merge pull request #343 from wking/next-gen-dockerfile
Browse files Browse the repository at this point in the history
images/installer: Rewrite tectonic-installer for openshift-install
  • Loading branch information
openshift-merge-robot authored Sep 27, 2018
2 parents 22f8f5f + 29e4d10 commit 77b366a
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions images/installer/Dockerfile.ci
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# This Dockerfile is a used by CI to publish openshift/origin-v4.0:installer

FROM openshift/origin-release:golang-1.10 AS build
WORKDIR /go/src/github.com/openshift/installer
COPY . .
RUN hack/build.sh && hack/get-terraform.sh

FROM scratch
COPY --from=build /go/src/github.com/openshift/installer/bin /bin
ENV PATH /bin
ENV HOME /
WORKDIR /
ENTRYPOINT ["/bin/openshift-install"]

0 comments on commit 77b366a

Please sign in to comment.