Aasher commited on
Commit
101f6cc
·
1 Parent(s): 4febd8d

refactor(docker): clean up .dockerignore by organizing entries and removing unnecessary lines

Browse files
Files changed (1) hide show
  1. .dockerignore +11 -15
.dockerignore CHANGED
@@ -1,33 +1,29 @@
1
  # Git
2
- .git
3
  .gitignore
4
- .python-version
5
 
6
  # Docker
7
  Dockerfile
8
- .dockerignore
9
 
10
- # Virtual environment
11
- .venv
12
- venv
13
- env
14
 
15
  # Python cache
16
- __pycache__
17
  *.pyc
18
  *.pyo
19
  *.pyd
20
 
21
-
22
- # IDE and OS-specific
23
  .vscode/
24
  .idea/
25
  .DS_Store
26
 
27
- # Local secrets and config
28
  .env
29
- *.env.*
30
 
31
- # Project-specific
32
- ingestion/
33
- workflow.ipynb
 
1
  # Git
2
+ .git/
3
  .gitignore
 
4
 
5
  # Docker
6
  Dockerfile
 
7
 
8
+ # Python virtual environments
9
+ venv/
10
+ env/
11
+ .venv/
12
 
13
  # Python cache
14
+ __pycache__/
15
  *.pyc
16
  *.pyo
17
  *.pyd
18
 
19
+ # IDE and OS files
 
20
  .vscode/
21
  .idea/
22
  .DS_Store
23
 
24
+ # Local environment variables
25
  .env
 
26
 
27
+ # Testing
28
+ .pytest_cache/
29
+ htmlcov/