Skip to content

Instantly share code, notes, and snippets.

@ashwanth1109
Last active February 15, 2021 10:58
Show Gist options
  • Save ashwanth1109/c2aa25e22afc4d0a5e27b020b3ca0cfb to your computer and use it in GitHub Desktop.
Save ashwanth1109/c2aa25e22afc4d0a5e27b020b3ca0cfb to your computer and use it in GitHub Desktop.
AWS Lambda Dockerfile
FROM amazon/aws-lambda-nodejs:12
COPY src/ package*.json ./
RUN npm install
CMD [ "index.handler" ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment