add Dockerfile, .dockerignore, requirements.txt
This commit is contained in:
parent
a4ef7a72e8
commit
024940243d
4 changed files with 46 additions and 0 deletions
27
.dockerignore
Normal file
27
.dockerignore
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
# Git metadata
|
||||
.git
|
||||
.gitignore
|
||||
|
||||
# IDE stuff
|
||||
.idea/
|
||||
.vscode/
|
||||
|
||||
# Python / Django
|
||||
*.log
|
||||
*.pot
|
||||
*.pyc
|
||||
.cache
|
||||
__pycache__/
|
||||
local_settings.py
|
||||
db.sqlite3
|
||||
|
||||
# Environments
|
||||
.python-version
|
||||
.env
|
||||
.venv
|
||||
env/
|
||||
venv/
|
||||
|
||||
# Installer logs
|
||||
pip-log.txt
|
||||
pip-delete-this-directory.txt
|
||||
Loading…
Add table
Add a link
Reference in a new issue