mirror of
https://github.com/chatmail/core.git
synced 2026-04-05 23:22:11 +03:00
10 lines
305 B
Docker
10 lines
305 B
Docker
ARG BASEIMAGE=quay.io/pypa/manylinux2014_x86_64
|
|
#ARG BASEIMAGE=quay.io/pypa/musllinux_1_1_x86_64
|
|
#ARG BASEIMAGE=quay.io/pypa/manylinux2014_aarch64
|
|
|
|
FROM $BASEIMAGE
|
|
RUN pipx install tox
|
|
COPY install-rust.sh /scripts/
|
|
RUN /scripts/install-rust.sh
|
|
RUN if command -v yum; then yum install -y perl-IPC-Cmd; fi
|