Skip to content

Commit

Permalink
build(coredeps): only run yum if it is available
Browse files Browse the repository at this point in the history
musllinux is based on Alpine and has no yum
  • Loading branch information
link2xt committed Sep 12, 2023
1 parent e7617f0 commit 061d091
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/coredeps/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ FROM $BASEIMAGE
RUN pipx install tox
COPY install-rust.sh /scripts/
RUN /scripts/install-rust.sh
RUN yum install -y perl-IPC-Cmd
RUN if command -v yum; then yum install -y perl-IPC-Cmd; fi

0 comments on commit 061d091

Please sign in to comment.