Spaces:
Runtime error
Runtime error
File size: 244 Bytes
48fc275 |
1 2 3 4 5 6 7 8 9 |
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"]
|