Building using the dockerfile is completing successfully and creating an image, but running that image results in the following error over and over again in the container logs:
pinepods | [PYI-15:ERROR] Failed to load Python shared library '/tmp/_MEINDpJdm/libpython3.11.so.1.0': Error relocating /tmp/_MEINDpJdm/libpython3.11.so.1.0: pwritev2: symbol not found
I believe it may be due to a change in the alpine containers used (which currently go to Alpine 3.23), because manually modifying the dockerfile to use Alpine 3.22 everywhere instead results in a container that works as expected.
Building using the
dockerfileis completing successfully and creating an image, but running that image results in the following error over and over again in the container logs:I believe it may be due to a change in the
alpinecontainers used (which currently go to Alpine 3.23), because manually modifying thedockerfileto use Alpine 3.22 everywhere instead results in a container that works as expected.