Skip to content

Commit

Permalink
Include .dockerignore file
Browse files Browse the repository at this point in the history
Signed-off-by: Sarah Aligbe <[email protected]>
  • Loading branch information
Sarahligbe authored Aug 9, 2024
1 parent 3eb3b67 commit 7e649cf
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# Ignore node_modules directory
node_modules

# Ignore Python virtual environment directories
venv
.venv

# Ignore MacOS system files
.DS_Store

# Ignore Git directories and files
.git
.gitignore

# Ignore log files
*.log

# Ignore temporary files
*.tmp
*.swp
*~

# Ignore build directories
build/
dist/

# Ignore compiled Python files
__pycache__/
*.pyc

# Ignore Docker-related files (uncomment if needed)
# Dockerfile
# docker-compose.yml

# Ignore coverage reports
coverage/
*.cover

# Ignore IDE and editor-specific files
.vscode/
.idea/
*.iml

# Ignore test results
test-output/
reports/

0 comments on commit 7e649cf

Please sign in to comment.