File size: 817 Bytes
243f395
14effdf
243f395
 
 
 
14effdf
243f395
 
14effdf
243f395
 
14effdf
243f395
 
 
14effdf
243f395
14effdf
243f395
 
14effdf
243f395
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
FROM ghcr.io/osgeo/gdal:ubuntu-small-3.7.2

# Include global arg in this stage of the build
ARG LAMBDA_TASK_ROOT="/var/task"
ARG PYTHONPATH="${LAMBDA_TASK_ROOT}:${PYTHONPATH}:/usr/local/lib/python3/dist-packages"
ARG RIE="https://github.com/aws/aws-lambda-runtime-interface-emulator/releases/latest/download/aws-lambda-rie"

# Set working directory to function root directory
WORKDIR ${LAMBDA_TASK_ROOT}

RUN curl -Lo /usr/local/bin/aws-lambda-rie ${RIE}
RUN chmod +x /usr/local/bin/aws-lambda-rie

COPY ./scripts/lambda-entrypoint.sh /lambda-entrypoint.sh
RUN chmod +x /lambda-entrypoint.sh
RUN ls -l /lambda-entrypoint.sh

COPY ./src ${LAMBDA_TASK_ROOT}/src

RUN apt update && apt install -y python3-pip
RUN python -m pip install awslambdaric

ENTRYPOINT  ["/lambda-entrypoint.sh"]
CMD [ "src.app.lambda_handler" ]