Skip to content

Commit

Permalink
Work around broken Docker image by Rocky Linux (until CentOS 7 is EOL) (
Browse files Browse the repository at this point in the history
  • Loading branch information
robert-scheck authored May 10, 2024
1 parent 424770b commit 4ab8425
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/images/centos.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ ARG image=centos/centos:latest
FROM quay.io/$image

# Install dependencies
RUN yum update -y
RUN yum install -y autoconf automake gcc libtool make diffutils file gzip
RUN if command -v yum > /dev/null; then dnf=yum; fi; ${dnf:-dnf} update -y
RUN if command -v yum > /dev/null; then dnf=yum; fi; ${dnf:-dnf} install -y autoconf automake gcc libtool make diffutils file gzip

# Add source code
ADD . /src
Expand Down

0 comments on commit 4ab8425

Please sign in to comment.