Skip to content

syncing master and dev #12

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Apr 6, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Update awsconfiguration.sh
  • Loading branch information
Gunasekar-K authored Mar 10, 2021
commit 05df8f60aff1beb8d80318332908ae152c6c0a42
8 changes: 7 additions & 1 deletion awsconfiguration.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,11 @@ echo "export AWS_SECRET_ACCESS_KEY=\"$AWS_SECRET_ACCESS_KEY\"">>awsenvconf
echo "export AWS_ENVIRONMENT=\"$AWS_ENVIRONMENT\"">>awsenvconf
echo "export AWS_SESSION_TOKEN=\"$AWS_SESSION_TOKEN\"">>awsenvconf
echo "export AWS_ACCOUNT_ID=\"$AWS_ACCOUNT_ID\"">>awsenvconf
echo awsenvconf >>.dockerignore

if grep -Fxq "awsenvconf" .dockerignore
then
echo "awsenvconf exist in docker ignore file list"
else
echo "awsenvconf" >> .dockerignore
fi