kou commented on issue #47202:
URL: https://github.com/apache/arrow/issues/47202#issuecomment-3124744156
Could you try this
```diff
diff --git a/tidyverse/latest.Dockerfile b/tidyverse/latest.Dockerfile
index b894906..bc51279 100644
--- a/tidyverse/latest.Dockerfile
+++ b/tidyverse/latest.Dockerfile
@@ -36,7 +36,7 @@ RUN apt-get update \
devtools \
formatR \
## dplyr database backends
- && install2.r --error --skipinstalled -n $NCPUS \
+ && LIBARROW_BINARY=true install2.r --error --skipinstalled -n $NCPUS \
arrow \
duckdb \
fst \
```
or
```diff
diff --git a/tidyverse/latest.Dockerfile b/tidyverse/latest.Dockerfile
index b894906..fd38d3e 100644
--- a/tidyverse/latest.Dockerfile
+++ b/tidyverse/latest.Dockerfile
@@ -26,6 +26,7 @@ RUN apt-get update \
libsasl2-dev \
libsqlite3-dev \
libssh2-1-dev \
+ libthrift-dev \
#libtiff-dev \
libxtst6 \
unixodbc-dev \
```
?
FYI: One-liner for the above:
* For the former: `docker run --rm -ti glcr.b-data.ch/r/base bash -c
'apt-get update && apt-get -y install --no-install-recommends cmake &&
LIBARROW_BINARY=true install2.r --error --skipinstalled arrow'`
* For the latter: `docker run --rm -ti glcr.b-data.ch/r/base bash -c
'apt-get update && apt-get -y install --no-install-recommends cmake
libthrift-dev && install2.r --error --skipinstalled arrow'`
--
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]