Description
Hi, I have a package in rust using PyO3 that I need to build inside a docker container as part of a multi-stage build and pass it to the runtime
stage for install and execution (I have this cumbersome setup as a requirement). I tried to use maturin
by running maturin build --release
but in the runtime
stage when I try to use pip install my-package-0.1.0-cp311-cp311-manylinux_2_34_aarch64.whl
I get this error: ERROR: my-package-0.1.0-cp311-cp311-manylinux_2_34_aarch64.whl is not a supported wheel on this platform
. The python version in which I'm building the wheel is 3.11.6 and it's the same version used in the runtime
. The the runtime
is running from bitnami/pytorch:2.1.1, I whould appretiate any advice to setup the Dockerfile to make this.
PS: Sorry if I'm not more precise in the description, but I'm bounded by an NDA agreement.