File size: 232 Bytes
c072afc
 
 
 
 
 
 
 
 
b116683
1
2
3
4
5
6
7
8
9
10
11
# Dockerfile
FROM public.ecr.aws/lambda/python:3.11

# Copy function code
COPY . ${LAMBDA_TASK_ROOT}

# Install dependencies
RUN pip install -r requirements.txt --target "${LAMBDA_TASK_ROOT}"

CMD ["lambda_function.lambda_handler"]