aws cloudformation create-stack --stack-name my-batch-stack --template-body file://template.json --capabilities CAPABILITY_IAM --region us-east-2
docker build -t my-image-for-batch .
$(aws ecr get-login --no-include-email)
docker tag my-image-for-batch:latest <repositoryUri>:latest
docker push <repositoryUri>:latest
aws batch submit-job --job-name example-job-name --job-queue <jobQueue name from step6> --job-definition <jobDefinition name from step6> --container-overrides command=["python3","/root/src/app.py"]