v2ray commited on
Commit
f1ba09b
1 Parent(s): 505bb91

Updated .dockerignore.

Browse files
Files changed (1) hide show
  1. .dockerignore +20 -1
.dockerignore CHANGED
@@ -1 +1,20 @@
1
- **/.git
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # The .dockerignore file excludes files from the container build process.
2
+ #
3
+ # https://docs.docker.com/engine/reference/builder/#dockerignore-file
4
+
5
+ # Exclude Git files
6
+ .git/*
7
+ .github/*
8
+ .gitignore
9
+
10
+ # Exclude jupyter
11
+ .ipynb_checkpoints/*
12
+
13
+ # Exclude Python cache files
14
+ __pycache__/*
15
+ .mypy_cache
16
+ .pytest_cache
17
+ .ruff_cache
18
+
19
+ # Exclude Python virtual environment
20
+ /venv