Created
August 30, 2023 07:07
-
-
Save raykipkorir/8e2bd0e13471e5f55e04fd226ae15372 to your computer and use it in GitHub Desktop.
Sample .dockerignore file
This file contains 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
# git | |
**/.git | |
**/.gitignore | |
# vscode | |
**/.vscode | |
# docker | |
Dockerfile | |
docker-compose-deploy.yml | |
docker-compose.yml | |
**/compose/development/django/Dockerfile | |
**/compose/development/proxy/Dockerfile | |
**/compose/production/django/Dockerfile | |
**/compose/production/proxy/Dockerfile | |
# python | |
**/coverage | |
**/__pycache__/ | |
**/.aws | |
**/.ssh | |
**/venv | |
**/env | |
**/.env | |
# markdown | |
README.md | |
CONTRIBUTION.md | |
**/.DS_Store |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment