-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.dockerignore
More file actions
99 lines (86 loc) · 1.05 KB
/
.dockerignore
File metadata and controls
99 lines (86 loc) · 1.05 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
# Git
.git
.gitignore
.gitlab-ci.yml
# AWS SAM build artifacts
.aws-sam/
**/.aws-sam/
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
env/
venv/
.venv/
*.egg-info/
dist/
build/
*.egg
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
# Documentation
docs/
*.md
LICENSE
NOTICE
CONTRIBUTING.md
CHANGELOG.md
# Test files
tests/
**/tests/
**/test_*.py
**/*_test.py
pytest.ini
.coverage
htmlcov/
# Node (for UI components)
node_modules/
npm-debug.log
yarn-error.log
# Temporary files
*.log
*.tmp
*.temp
.cache/
tmp/
temp/
# Build scripts and configs
samconfig*.toml
template.yaml
template-*.yaml
Makefile
publish.py
publish_container*.py
deploy*.py
update_templates.py
# Notebooks and samples
notebooks/
samples/
# CloudFormation packaged templates
**/*.packaged.yaml
**/packaged.yaml
# Docker files we don't need in context
Dockerfile*
docker-compose*.yml
# Other unnecessary files for Lambda
images/
scripts/
memory-bank/
*.xlsx
*.pdf
*.png
*.jpg
*.jpeg
*.gif
*.ico
# Keep only source code and requirements
!patterns/*/src/**
!lib/idp_common_pkg/**
!src/lambda/**