Skip to content

Commit

Permalink
Bump up preflight tool version to 1.9.2 (#1569)
Browse files Browse the repository at this point in the history
  • Loading branch information
igor-karpukhin committed May 8, 2024
1 parent bac3076 commit c1b213e
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/actions/certify-openshift-images/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
FROM registry.access.redhat.com/ubi8/ubi:latest

RUN yum install -y \
bzip2 \
gzip \
tar \
iptables \
yum-utils \
jq
bzip2 \
gzip \
tar \
iptables \
yum-utils \
jq

RUN yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo && \
yum list docker-ce --showduplicates | sort -r && \
yum install -y \
docker-ce \
docker-ce-cli \
containerd.io
yum list docker-ce --showduplicates | sort -r && \
yum install -y \
docker-ce \
docker-ce-cli \
containerd.io

RUN yum clean all

RUN curl -LO https://github.com/redhat-openshift-ecosystem/openshift-preflight/releases/download/1.9.1/preflight-linux-amd64 && \
RUN curl -LO https://github.com/redhat-openshift-ecosystem/openshift-preflight/releases/download/1.9.2/preflight-linux-amd64 && \
chmod +x ./preflight-linux-amd64 && \
mv ./preflight-linux-amd64 /usr/local/bin/preflight

Expand Down

0 comments on commit c1b213e

Please sign in to comment.