Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

image: Take explicit dependency on util-linux for uuidgen and gzip #1262

Merged
merged 1 commit into from
Feb 16, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion images/installer/Dockerfile.ci
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ RUN hack/build.sh

FROM registry.svc.ci.openshift.org/openshift/origin-v4.0:base
COPY --from=builder /go/src/github.com/openshift/installer/bin/openshift-install /bin/openshift-install
RUN mkdir /output && chown 1000:1000 /output
RUN yum install -y util-linux gzip && yum clean all && rm -rf /var/cache/yum/* && \
mkdir /output && chown 1000:1000 /output
USER 1000:1000
ENV PATH /bin
ENV HOME /output
Expand Down
3 changes: 2 additions & 1 deletion images/installer/Dockerfile.ci.rhel7
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ RUN hack/build.sh

FROM registry.svc.ci.openshift.org/ocp/4.0:base
COPY --from=builder /go/src/github.com/openshift/installer/bin/openshift-install /bin/openshift-install
RUN mkdir /output && chown 1000:1000 /output
RUN yum install -y util-linux gzip && yum clean all && rm -rf /var/cache/yum/* && \
mkdir /output && chown 1000:1000 /output
USER 1000:1000
ENV PATH /bin
ENV HOME /output
Expand Down