pitrou commented on issue #32994:
URL: https://github.com/apache/arrow/issues/32994#issuecomment-4613829931
I've just encountered this. The problem is that the Docker way to run under
a different arch than native has changed.
For example, we're currently doing (once variables such as `${base}` etc.
are expanded):
```dockerfile
FROM arm64v8/ubuntu:24.04
```
but what we need to do is:
```dockerfile
FROM --platform=linux/arm64/v8 ubuntu:24.04
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]