Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

.dockerignore 382 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
  1. # Ignore unnecessary files for Docker build
  2. .git
  3. .gitignore
  4. README.md
  5. SERVING_GUIDE.md
  6. QUICK_START.md
  7. *.md
  8. .env
  9. .venv
  10. venv/
  11. __pycache__/
  12. *.pyc
  13. *.pyo
  14. *.pyd
  15. .Python
  16. pip-log.txt
  17. pip-delete-this-directory.txt
  18. .tox
  19. .coverage
  20. .coverage.*
  21. .cache
  22. nosetests.xml
  23. coverage.xml
  24. *.cover
  25. *.log
  26. .DS_Store
  27. .pytest_cache/
  28. notebooks/
  29. tests/
  30. mlruns/
  31. data/
  32. scripts/
  33. .dagshub/
  34. dvc.yaml
  35. dvc.lock
  36. *.ipynb
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...