add dockignore
This commit is contained in:
53
transportmanager/.dockerignore
Normal file
53
transportmanager/.dockerignore
Normal file
@@ -0,0 +1,53 @@
|
|||||||
|
# Ignore Python cache
|
||||||
|
__pycache__/
|
||||||
|
*.pyc
|
||||||
|
*.pyo
|
||||||
|
|
||||||
|
# Ignore venv
|
||||||
|
venv/
|
||||||
|
.env
|
||||||
|
|
||||||
|
# Ignore dev/test stuff
|
||||||
|
*.log
|
||||||
|
*.sqlite3
|
||||||
|
|
||||||
|
# Keep assets (so your manuals/pdfs are copied!)
|
||||||
|
!server/assets/*.pdf
|
||||||
|
# =========================
|
||||||
|
# Python ignores
|
||||||
|
# =========================
|
||||||
|
__pycache__/
|
||||||
|
*.pyc
|
||||||
|
*.pyo
|
||||||
|
*.pyd
|
||||||
|
|
||||||
|
# Virtual environments and local configs
|
||||||
|
venv/
|
||||||
|
.env
|
||||||
|
*.env
|
||||||
|
|
||||||
|
# =========================
|
||||||
|
# Development & Editor files
|
||||||
|
# =========================
|
||||||
|
*.log
|
||||||
|
*.sqlite3
|
||||||
|
*.DS_Store
|
||||||
|
.vscode/
|
||||||
|
.idea/
|
||||||
|
*.swp
|
||||||
|
|
||||||
|
# =========================
|
||||||
|
# Build / cache directories
|
||||||
|
# =========================
|
||||||
|
dist/
|
||||||
|
build/
|
||||||
|
*.egg-info/
|
||||||
|
|
||||||
|
# =========================
|
||||||
|
# Keep assets we need inside container
|
||||||
|
# =========================
|
||||||
|
!server/assets/*.pdf
|
||||||
|
!client/assets/**
|
||||||
|
!server/generated_pdfs/**
|
||||||
|
!uploads/**
|
||||||
|
!client/uploads/**
|
||||||
Reference in New Issue
Block a user