mirror of
https://github.com/serverless/serverless.git
synced 2026-01-18 14:58:43 +00:00
7 lines
162 B
Docker
7 lines
162 B
Docker
FROM public.ecr.aws/lambda/nodejs:12
|
|
|
|
COPY app.js ./
|
|
|
|
# Command can be overwritten by providing a different command in the template directly.
|
|
CMD ["app.handler"]
|