mirror of
https://github.com/chatmail/core.git
synced 2026-04-06 15:42:10 +03:00
Don't build our own Perl and OpenSSL. manylinux container already has recent Perl and we use vendored OpenSSL.
7 lines
202 B
Docker
7 lines
202 B
Docker
FROM quay.io/pypa/manylinux2014_x86_64
|
|
RUN pipx install tox
|
|
|
|
# Install Rust
|
|
ADD deps/build_rust.sh /builder/build_rust.sh
|
|
RUN mkdir tmp1 && cd tmp1 && bash /builder/build_rust.sh && cd .. && rm -r tmp1
|