Skip to content

vvemel/lambda-container-scala-example

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AWS Lambda Function in Scala with Container Image

In the commands below, replace <aws-region> and <aws-account-number>.

Create ECR repository

aws ecr create-repository --region <aws-region> --repository-name lambda-scala-example

Login to ECR

aws ecr get-login-password --region <aws-region> | docker login --username AWS --password-stdin <aws-account-number>.dkr.ecr.<aws-region>.amazonaws.com

Build and tag the image

docker build . -t <aws-account-number>.dkr.ecr.<aws-region>.amazonaws.com/lambda-scala-example

Push the image

docker push <aws-account-number>.dkr.ecr.<aws-region>.amazonaws.com/lambda-scala-example

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Scala 87.1%
  • Dockerfile 12.9%