| # .dockerignore file for DOCX to PDF Converter | |
| # Ignore Git directory | |
| .git/ | |
| # Ignore Python cache | |
| __pycache__/ | |
| *.pyc | |
| *.pyo | |
| *.pyd | |
| .Python | |
| # Ignore test files | |
| test_*.py | |
| *_test.py | |
| test/ | |
| # Ignore logs | |
| *.log | |
| # Ignore virtual environments | |
| venv/ | |
| env/ | |
| .venv/ | |
| .env/ | |
| # Ignore IDE files | |
| .vscode/ | |
| .idea/ | |
| *.swp | |
| *.swo | |
| # Ignore OS files | |
| .DS_Store | |
| Thumbs.db | |
| # Ignore temporary files | |
| tmp/ | |
| temp/ | |
| *.tmp | |
| # Ignore documentation files that aren't needed in the container | |
| # But keep requirements.txt and packages.txt | |
| *.md | |
| *.docx |