mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
7 lines
116 B
Docker
7 lines
116 B
Docker
FROM public.ecr.aws/lambda/python:3.10
|
|
|
|
# Copy function code
|
|
COPY main.py .
|
|
|
|
# Set the handler
|
|
CMD ["main.handler"]
|