# This Dockerfile is a used by CI to publish an installer image
# It builds an image containing only the openshift-install.

FROM openshift/golang-builder:1.12 AS builder
ENV SOURCE_GIT_COMMIT=2055609f95b19322ee6cfdd0bea73399297c4a3e SOURCE_DATE_EPOCH=1579135152 BUILD_VERSION=v4.3.0 SOURCE_GIT_URL=https://github.com/openshift/installer SOURCE_GIT_TAG=2055609f BUILD_RELEASE=202001211731
RUN yum install -y libvirt-devel && \
    yum clean all && rm -rf /var/cache/yum/*
WORKDIR /go/src/github.com/openshift/installer
COPY . .
RUN TAGS="libvirt baremetal" hack/build.sh


FROM openshift/ose-base:v4.3.0.20200121.173126
ENV SOURCE_GIT_COMMIT=2055609f95b19322ee6cfdd0bea73399297c4a3e SOURCE_DATE_EPOCH=1579135152 BUILD_VERSION=v4.3.0 SOURCE_GIT_URL=https://github.com/openshift/installer SOURCE_GIT_TAG=2055609f BUILD_RELEASE=202001211731
COPY --from=builder /go/src/github.com/openshift/installer/bin/openshift-install /bin/openshift-install

RUN yum update -y && \
    yum install --setopt=tsflags=nodocs -y libvirt-libs && \
    yum clean all && rm -rf /var/cache/yum/*

RUN mkdir /output && chown 1000:1000 /output
USER 1000:1000
ENV PATH /bin
ENV HOME /output
WORKDIR /output
ENTRYPOINT ["/bin/openshift-install"]

LABEL \
        com.redhat.component="ose-baremetal-installer-container" \
        io.openshift.build.commit.url="https://github.com/openshift/installer/commit/2055609f95b19322ee6cfdd0bea73399297c4a3e" \
        version="v4.3.0" \
        name="openshift/ose-baremetal-installer" \
        io.openshift.build.commit.id="2055609f95b19322ee6cfdd0bea73399297c4a3e" \
        release="202001211731" \
        io.openshift.build.source-location="https://github.com/openshift/installer"

