Skip to content

Commit 54dbfa0

Browse files
authored
Add missing dockerignore for gradio app (#211)
1 parent cf94824 commit 54dbfa0

File tree

6 files changed

+372
-0
lines changed

6 files changed

+372
-0
lines changed
Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
# Ignore version control metadata
2+
.git
3+
.gitignore
4+
.github
5+
6+
# Python cache and artifacts
7+
__pycache__/
8+
*.py[cod]
9+
*$py.class
10+
*.so
11+
.Python
12+
13+
# Build outputs
14+
build/
15+
dist/
16+
develop-eggs/
17+
downloads/
18+
.eggs/
19+
lib/
20+
lib64/
21+
parts/
22+
sdist/
23+
var/
24+
wheels/
25+
pip-wheel-metadata/
26+
share/python-wheels/
27+
*.egg-info/
28+
.installed.cfg
29+
*.egg
30+
31+
# Testing and coverage reports
32+
.pytest_cache/
33+
.nox/
34+
.tox/
35+
.coverage
36+
.coverage.*
37+
.cache
38+
nosetests.xml
39+
coverage.xml
40+
*.cover
41+
*.py,cover
42+
.hypothesis/
43+
44+
# Virtual environments
45+
.env
46+
.venv*
47+
venv/
48+
ENV/
49+
env/
50+
venv.bak/
51+
env.bak/
52+
53+
# IDE directories
54+
.vscode/
55+
.idea/
56+
.spyderproject
57+
.spyproject
58+
.ropeproject
59+
60+
# OS files
61+
.DS_Store
62+
Thumbs.db
Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
# Ignore version control metadata
2+
.git
3+
.gitignore
4+
.github
5+
6+
# Python cache and artifacts
7+
__pycache__/
8+
*.py[cod]
9+
*$py.class
10+
*.so
11+
.Python
12+
13+
# Build outputs
14+
build/
15+
dist/
16+
develop-eggs/
17+
downloads/
18+
.eggs/
19+
lib/
20+
lib64/
21+
parts/
22+
sdist/
23+
var/
24+
wheels/
25+
pip-wheel-metadata/
26+
share/python-wheels/
27+
*.egg-info/
28+
.installed.cfg
29+
*.egg
30+
31+
# Testing and coverage reports
32+
.pytest_cache/
33+
.nox/
34+
.tox/
35+
.coverage
36+
.coverage.*
37+
.cache
38+
nosetests.xml
39+
coverage.xml
40+
*.cover
41+
*.py,cover
42+
.hypothesis/
43+
44+
# Virtual environments
45+
.env
46+
.venv*
47+
venv/
48+
ENV/
49+
env/
50+
venv.bak/
51+
env.bak/
52+
53+
# IDE directories
54+
.vscode/
55+
.idea/
56+
.spyderproject
57+
.spyproject
58+
.ropeproject
59+
60+
# OS files
61+
.DS_Store
62+
Thumbs.db

magic-photobooth/.dockerignore

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
# Ignore version control metadata
2+
.git
3+
.gitignore
4+
.github
5+
6+
# Python cache and artifacts
7+
__pycache__/
8+
*.py[cod]
9+
*$py.class
10+
*.so
11+
.Python
12+
13+
# Build outputs
14+
build/
15+
dist/
16+
develop-eggs/
17+
downloads/
18+
.eggs/
19+
lib/
20+
lib64/
21+
parts/
22+
sdist/
23+
var/
24+
wheels/
25+
pip-wheel-metadata/
26+
share/python-wheels/
27+
*.egg-info/
28+
.installed.cfg
29+
*.egg
30+
31+
# Testing and coverage reports
32+
.pytest_cache/
33+
.nox/
34+
.tox/
35+
.coverage
36+
.coverage.*
37+
.cache
38+
nosetests.xml
39+
coverage.xml
40+
*.cover
41+
*.py,cover
42+
.hypothesis/
43+
44+
# Virtual environments
45+
.env
46+
.venv*
47+
venv/
48+
ENV/
49+
env/
50+
venv.bak/
51+
env.bak/
52+
53+
# IDE directories
54+
.vscode/
55+
.idea/
56+
.spyderproject
57+
.spyproject
58+
.ropeproject
59+
60+
# OS files
61+
.DS_Store
62+
Thumbs.db

nightwatch-ai/.dockerignore

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
# Ignore version control metadata
2+
.git
3+
.gitignore
4+
.github
5+
6+
# Python cache and artifacts
7+
__pycache__/
8+
*.py[cod]
9+
*$py.class
10+
*.so
11+
.Python
12+
13+
# Build outputs
14+
build/
15+
dist/
16+
develop-eggs/
17+
downloads/
18+
.eggs/
19+
lib/
20+
lib64/
21+
parts/
22+
sdist/
23+
var/
24+
wheels/
25+
pip-wheel-metadata/
26+
share/python-wheels/
27+
*.egg-info/
28+
.installed.cfg
29+
*.egg
30+
31+
# Testing and coverage reports
32+
.pytest_cache/
33+
.nox/
34+
.tox/
35+
.coverage
36+
.coverage.*
37+
.cache
38+
nosetests.xml
39+
coverage.xml
40+
*.cover
41+
*.py,cover
42+
.hypothesis/
43+
44+
# Virtual environments
45+
.env
46+
.venv*
47+
venv/
48+
ENV/
49+
env/
50+
venv.bak/
51+
env.bak/
52+
53+
# IDE directories
54+
.vscode/
55+
.idea/
56+
.spyderproject
57+
.spyproject
58+
.ropeproject
59+
60+
# OS files
61+
.DS_Store
62+
Thumbs.db

retail-forecast/.dockerignore

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
# Ignore version control metadata
2+
.git
3+
.gitignore
4+
.github
5+
6+
# Python cache and artifacts
7+
__pycache__/
8+
*.py[cod]
9+
*$py.class
10+
*.so
11+
.Python
12+
13+
# Build outputs
14+
build/
15+
dist/
16+
develop-eggs/
17+
downloads/
18+
.eggs/
19+
lib/
20+
lib64/
21+
parts/
22+
sdist/
23+
var/
24+
wheels/
25+
pip-wheel-metadata/
26+
share/python-wheels/
27+
*.egg-info/
28+
.installed.cfg
29+
*.egg
30+
31+
# Testing and coverage reports
32+
.pytest_cache/
33+
.nox/
34+
.tox/
35+
.coverage
36+
.coverage.*
37+
.cache
38+
nosetests.xml
39+
coverage.xml
40+
*.cover
41+
*.py,cover
42+
.hypothesis/
43+
44+
# Virtual environments
45+
.env
46+
.venv*
47+
venv/
48+
ENV/
49+
env/
50+
venv.bak/
51+
env.bak/
52+
53+
# IDE directories
54+
.vscode/
55+
.idea/
56+
.spyderproject
57+
.spyproject
58+
.ropeproject
59+
60+
# OS files
61+
.DS_Store
62+
Thumbs.db

zenml-support-agent/.dockerignore

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
# Ignore version control metadata
2+
.git
3+
.gitignore
4+
.github
5+
6+
# Python cache and artifacts
7+
__pycache__/
8+
*.py[cod]
9+
*$py.class
10+
*.so
11+
.Python
12+
13+
# Build outputs
14+
build/
15+
dist/
16+
develop-eggs/
17+
downloads/
18+
.eggs/
19+
lib/
20+
lib64/
21+
parts/
22+
sdist/
23+
var/
24+
wheels/
25+
pip-wheel-metadata/
26+
share/python-wheels/
27+
*.egg-info/
28+
.installed.cfg
29+
*.egg
30+
31+
# Testing and coverage reports
32+
.pytest_cache/
33+
.nox/
34+
.tox/
35+
.coverage
36+
.coverage.*
37+
.cache
38+
nosetests.xml
39+
coverage.xml
40+
*.cover
41+
*.py,cover
42+
.hypothesis/
43+
44+
# Virtual environments
45+
.env
46+
.venv*
47+
venv/
48+
ENV/
49+
env/
50+
venv.bak/
51+
env.bak/
52+
53+
# IDE directories
54+
.vscode/
55+
.idea/
56+
.spyderproject
57+
.spyproject
58+
.ropeproject
59+
60+
# OS files
61+
.DS_Store
62+
Thumbs.db

0 commit comments

Comments
 (0)