pitrou commented on code in PR #13899:
URL: https://github.com/apache/arrow/pull/13899#discussion_r947035176


##########
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:
   Not sure this is ideal, but It wasn't able to create a child Dockerfile with 
this file as BASE (I may be misunderstanding how these images are managed).



##########
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:
   Not sure this is ideal, but It wasn't able to create a child Dockerfile with 
this file as FROM (I may be misunderstanding how these images are managed).



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