Skip to content

Commit

Permalink
fix: mdl installation
Browse files Browse the repository at this point in the history
New versions of mdl failed to install due the missing dependencies.
Update dependencies and install only explicit minor version of mdl to
prevent future issues.

Signed-off-by: Martin Basti <mbasti@redhat.com>
  • Loading branch information
MartinBasti committed Jul 16, 2024
1 parent 9044761 commit 648c4bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions markdownlint/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ RUN dnf -y --nodocs --setopt=install_weak_deps=False \
--disablerepo=fedora-cisco-openh264 \
--disablerepo=fedora-modular \
--disablerepo=updates-modular \
install ruby rubygems git && \
install ruby ruby-devel gcc redhat-rpm-config rubygems git && \
dnf clean all && \
gem install mdl:'>=0.11.0'
gem install mdl -v '>=0.13.0, <0.14'

COPY action.sh /action/action.sh
ENTRYPOINT ["bash", "/action/action.sh"]

0 comments on commit 648c4bd

Please sign in to comment.