mirror of
https://github.com/serverless/serverless.git
synced 2025-12-08 19:46:03 +00:00
7 lines
132 B
Docker
7 lines
132 B
Docker
FROM public.ecr.aws/lambda/python:3.8
|
|
|
|
COPY app.py ./
|
|
|
|
# You can overwrite command in `serverless.yml` template
|
|
CMD ["app.handler"]
|