File size: 212 Bytes
85c0c49
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
FROM public.ecr.aws/lambda/python:3.9

COPY app.py ${LAMBDA_TASK_ROOT}
COPY requirements.txt ./

RUN pip install -r requirements.txt --target "${LAMBDA_TASK_ROOT}"
RUN chmod -R o+rX .

CMD ["app.lambda_handler"]