We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dafde6d commit 7d1ea2bCopy full SHA for 7d1ea2b
examples/arrow/Dockerfile
@@ -3,8 +3,12 @@ FROM rhub/r-minimal
3
4
RUN mkdir -p ~/.R && echo "LDFLAGS+=-fPIC" >> ~/.R/Makevars
5
6
+# The most recent 15.0.1 version of the arrow package does not compile
7
+# on Alpine, so we install the previous version. If you had success with
8
+# newer versions, please let us know! Thanks!
9
+
10
RUN installr -d \
- -t "make openssl-dev cmake linux-headers" \
- -a "openssl" arrow
11
+ -t "make openssl-dev cmake linux-headers apache-arrow-dev" \
12
+ -a "openssl libarrow_dataset libarrow" arrow@14.0.2.1
13
14
RUN R -q -e 'library(arrow)'
0 commit comments