Skip to content

Commit

Permalink
Update lambda layer build scripts.
Browse files Browse the repository at this point in the history
  • Loading branch information
igorborgest committed Oct 31, 2020
1 parent 28f423e commit fa1a439
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions building/lambda/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ ADD requirements.txt /root/
RUN pip3 install -r /root/requirements.txt

ADD requirements-dev.txt /root/
# Removing "-e ." installation
RUN head -n -2 /root/requirements-dev.txt > /root/temp.txt
RUN mv /root/temp.txt /root/requirements-dev.txt
RUN pip3 install -r /root/requirements-dev.txt

RUN rm -rf /root/requirements*
Expand Down
2 changes: 1 addition & 1 deletion building/lambda/build-lambda-layer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export ARROW_HOME=$(pwd)/dist
export LD_LIBRARY_PATH=$(pwd)/dist/lib:$LD_LIBRARY_PATH

git clone \
--branch apache-arrow-1.0.1 \
--branch apache-arrow-2.0.0 \
--single-branch \
https://github.com/apache/arrow.git

Expand Down

0 comments on commit fa1a439

Please sign in to comment.