mirror of
https://github.com/chatmail/core.git
synced 2026-05-08 09:26:29 +03:00
build(coredeps): only run yum if it is available
musllinux is based on Alpine and has no yum
This commit is contained in:
@@ -6,4 +6,4 @@ FROM $BASEIMAGE
|
|||||||
RUN pipx install tox
|
RUN pipx install tox
|
||||||
COPY install-rust.sh /scripts/
|
COPY install-rust.sh /scripts/
|
||||||
RUN /scripts/install-rust.sh
|
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
|
||||||
|
|||||||
Reference in New Issue
Block a user