Skip to content

Commit

Permalink
Dockerfile.commitchecker: update to be 4.15
Browse files Browse the repository at this point in the history
Signed-off-by: Steve Kuznetsov <skuznets@redhat.com>
  • Loading branch information
stevekuznetsov committed Nov 28, 2023
1 parent 9c4716e commit 78e0efc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Dockerfile.commitchecker
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ WORKDIR /go/src/github.com/openshift/build-machinery-go
COPY . .
RUN make -C commitchecker

FROM registry.ci.openshift.org/ocp/4.14:base
FROM registry.ci.openshift.org/ocp/4.15:base
COPY --from=builder /go/src/github.com/openshift/build-machinery-go/commitchecker/commitchecker /usr/bin/
RUN yum update -y && \
yum install --setopt=tsflags=nodocs -y git && \
yum clean all && rm -rf /var/cache/yum/*
RUN dnf update -y && \
dnf install --setopt=tsflags=nodocs -y git && \
dnf clean all && rm -rf /var/cache/yum/*
ENTRYPOINT ["/usr/bin/commitchecker"]

0 comments on commit 78e0efc

Please sign in to comment.