Sunil Surendra Singh
First commit
48fc275
raw
history blame
244 Bytes
FROM public.ecr.aws/lambda/python:3.11
COPY app.py requirements.txt ./
RUN python3.11 -m pip install -r requirements.txt -t .
# Command can be overwritten by providing a different command in the template directly.
CMD ["app.lambda_handler"]