Corin1998 commited on
Commit
d19e4bb
·
verified ·
1 Parent(s): 6b15460

Create .dockerignore

Browse files
Files changed (1) hide show
  1. .dockerignore +25 -0
.dockerignore ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Pythonキャッシュ
2
+ __pycache__/
3
+ *.pyc
4
+ *.pyo
5
+ *.pyd
6
+
7
+ # 仮想環境
8
+ .venv/
9
+ env/
10
+ venv/
11
+
12
+ # OS系
13
+ .DS_Store
14
+ Thumbs.db
15
+
16
+ # Git
17
+ .git
18
+ .gitignore
19
+
20
+ # IDE
21
+ .vscode/
22
+ .idea/
23
+
24
+ # その他ビルド不要ファイル
25
+ *.log