assignUser commented on code in PR #13899:
URL: https://github.com/apache/arrow/pull/13899#discussion_r947043400
##########
ci/docker/linux-apt-python-3.dockerfile:
##########
@@ -39,6 +39,12 @@ RUN pip install \
-r arrow/python/requirements-build.txt \
-r arrow/python/requirements-test.txt
+ARG numba
+COPY ci/scripts/install_numba.sh /arrow/ci/scripts/
+RUN if [ "${numba}" != "" ]; then \
+ /arrow/ci/scripts/install_numba.sh ${numba} \
+ ; fi
Review Comment:
A good example on child images/services is the `ubuntu-r` one, which builds
on the `ubuntu-cpp` dockerfile in it's own `linux-apt-r.dockerfile`
https://github.com/apache/arrow/blob/master/docker-compose.yml#L1234-L1242
--
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]