alamb commented on issue #5787:
URL: https://github.com/apache/arrow-rs/issues/5787#issuecomment-2120282286

   Here is a workaround that worked for me
   
https://www.reddit.com/r/docker/comments/xhqaef/how_to_run_arch_linux_in_docker/?onetap_auto=true&one_tap=true
   
   ```diff
   diff --git a/parquet/regen.sh b/parquet/regen.sh
   index f2d8158765c..12973082d10 100755
   --- a/parquet/regen.sh
   +++ b/parquet/regen.sh
   @@ -21,7 +21,7 @@ REVISION=46cc3a0647d301bb9579ca8dd2cc356caf2a72d2
   
    SOURCE_DIR="$(cd "$(dirname "${BASH_SOURCE[0]:-$0}")" && pwd)"
   
   -docker run -v $SOURCE_DIR:/thrift -it archlinux /bin/bash -c "\
   +docker run --platform=linux/amd64 -v $SOURCE_DIR:/thrift -it archlinux 
/bin/bash -c "\
      pacman -Sy --noconfirm wget thrift && \
      wget 
https://raw.githubusercontent.com/apache/parquet-format/$REVISION/src/main/thrift/parquet.thrift
 -O /tmp/parquet.thrift && \
      thrift --gen rs /tmp/parquet.thrift && \
   ```


-- 
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]

Reply via email to