Skip to content

Commit 8917250

Browse files
committed
chore: Add dockerignore
1 parent d7b142b commit 8917250

2 files changed

Lines changed: 47 additions & 3 deletions

File tree

.dockerignore

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
# Git
2+
.git/
3+
.github/
4+
5+
# Python
6+
.venv/
7+
__pycache__/
8+
*.pyc
9+
*.pyo
10+
*.pyd
11+
*.egg-info/
12+
dist/
13+
build/
14+
15+
# uv
16+
.uv/
17+
18+
# Tests
19+
tests/
20+
21+
# Cache
22+
.pytest_cache/
23+
.ruff_cache/
24+
25+
# Environment & secrets
26+
.env
27+
.env.example
28+
29+
# Config templates
30+
config.example.yaml
31+
32+
# IDE
33+
.idea/
34+
*.iml
35+
36+
# Docker
37+
Dockerfile
38+
docker-compose.yaml
39+
.dockerignore
40+
41+
# Docs & misc
42+
README.md
43+
LICENSE
44+
blog.md
45+
46+
# macOS
47+
.DS_Store

.gitignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,6 @@ build/
2121
*.iml
2222
.idea/
2323

24-
# Docker
25-
.dockerignore
26-
2724
blog.md
2825

2926
# Local config (use config.example.yaml as a template)

0 commit comments

Comments
 (0)