-
Notifications
You must be signed in to change notification settings - Fork 79
[FEATURE] Add Docker Setup and Documentation #1023
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
Open
pulk17
wants to merge
11
commits into
CCExtractor:master
Choose a base branch
from
pulk17:feature/Docker
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
78e4a40
Introduction of Docker
pulk17 31c63d9
Dockerfile
pulk17 4b5ef3e
Deleted useless file
pulk17 4633359
Fixed security issues
pulk17 18f5788
Fixed docker copy issue
pulk17 12f4778
Comment fixes
pulk17 bbec88a
merged the if statements for sonarqube lint
pulk17 62e4f6c
changed root user
pulk17 dc8b499
removed the if else fix i provided to fix sample info as it is giving…
pulk17 b8b66bc
Revert files to original
pulk17 9299ecd
Revert back to orignal
pulk17 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,69 @@ | ||
| # Git | ||
| .git | ||
| .gitignore | ||
| .gitattributes | ||
|
|
||
| # Python | ||
| __pycache__/ | ||
| *.py[cod] | ||
| *$py.class | ||
| *.so | ||
| .Python | ||
| env/ | ||
| venv/ | ||
| ENV/ | ||
| .venv | ||
| *.egg-info/ | ||
| dist/ | ||
| build/ | ||
| *.egg | ||
|
|
||
| # IDE | ||
| .vscode/ | ||
| .idea/ | ||
| *.swp | ||
| *.swo | ||
| *~ | ||
|
|
||
| # OS | ||
| .DS_Store | ||
| Thumbs.db | ||
|
|
||
| # Docker (don't copy docker files into the image) | ||
| Dockerfile | ||
| docker-compose*.yml | ||
| .dockerignore | ||
|
|
||
| # Database lock files | ||
| *.db | ||
| *.sqlite | ||
| *.sqlite3 | ||
| .db_initialized | ||
|
|
||
| # Logs | ||
| logs/ | ||
| *.log | ||
|
|
||
| # Test files | ||
| .coverage | ||
| htmlcov/ | ||
| .pytest_cache/ | ||
| .tox/ | ||
|
|
||
| # CI/CD | ||
| .github/ | ||
| .travis.yml | ||
| .circleci/ | ||
|
|
||
| # Temporary files | ||
| tmp/ | ||
| temp/ | ||
| *.tmp | ||
|
|
||
| # Secrets and credentials (prevent accidental inclusion) | ||
| *.pem | ||
| *.key | ||
| service-account.json | ||
| gcp-key.json | ||
| secret_key | ||
| secret_csrf | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add a newline to the end.