Skip to content

Commit 7d1ea2b

Browse files
committed
Arrow example: compile an older version, which works
See also #85.
1 parent dafde6d commit 7d1ea2b

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

examples/arrow/Dockerfile

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,12 @@ FROM rhub/r-minimal
33

44
RUN mkdir -p ~/.R && echo "LDFLAGS+=-fPIC" >> ~/.R/Makevars
55

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+
610
RUN installr -d \
7-
-t "make openssl-dev cmake linux-headers" \
8-
-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
913

1014
RUN R -q -e 'library(arrow)'

0 commit comments

Comments
 (0)