Skip to content

Commit fa1a439

Browse files
committed
Update lambda layer build scripts.
1 parent 28f423e commit fa1a439

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

building/lambda/Dockerfile

+3
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ ADD requirements.txt /root/
1818
RUN pip3 install -r /root/requirements.txt
1919

2020
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
2124
RUN pip3 install -r /root/requirements-dev.txt
2225

2326
RUN rm -rf /root/requirements*

building/lambda/build-lambda-layer.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export ARROW_HOME=$(pwd)/dist
1414
export LD_LIBRARY_PATH=$(pwd)/dist/lib:$LD_LIBRARY_PATH
1515

1616
git clone \
17-
--branch apache-arrow-1.0.1 \
17+
--branch apache-arrow-2.0.0 \
1818
--single-branch \
1919
https://github.com/apache/arrow.git
2020

0 commit comments

Comments
 (0)