We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28f423e commit fa1a439Copy full SHA for fa1a439
building/lambda/Dockerfile
@@ -18,6 +18,9 @@ ADD requirements.txt /root/
18
RUN pip3 install -r /root/requirements.txt
19
20
ADD requirements-dev.txt /root/
21
+# Removing "-e ." installation
22
+RUN head -n -2 /root/requirements-dev.txt > /root/temp.txt
23
+RUN mv /root/temp.txt /root/requirements-dev.txt
24
RUN pip3 install -r /root/requirements-dev.txt
25
26
RUN rm -rf /root/requirements*
building/lambda/build-lambda-layer.sh
@@ -14,7 +14,7 @@ export ARROW_HOME=$(pwd)/dist
14
export LD_LIBRARY_PATH=$(pwd)/dist/lib:$LD_LIBRARY_PATH
15
16
git clone \
17
- --branch apache-arrow-1.0.1 \
+ --branch apache-arrow-2.0.0 \
--single-branch \
https://github.com/apache/arrow.git
0 commit comments