-
-
Notifications
You must be signed in to change notification settings - Fork 341
Expand file tree
/
Copy path.dockerignore
More file actions
42 lines (39 loc) · 639 Bytes
/
.dockerignore
File metadata and controls
42 lines (39 loc) · 639 Bytes
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
# Extras that are not part of .gitignore
.git/
# Having Dockerfile in .dockerignore lets us develop docker images without full rebuild on each change
Dockerfile
# Justfile is not needed in the image
justfile
# Remove self from the image too
.dockerignore
# Unneeded code
**/tests
demo/
.github
####
#### This must match .gitignore ####
####
**/*.rs.bk
**/dist/
**/node_modules/
*.mbtiles
*.profraw
.DS_Store
.aider*
.aws-sam/
.env.local
.idea/
.vscode/
cache.sqlite*
config.yml
coverage
pg_data/
target/
test_log*
tests/mbtiles_temp_files/
tests/output/
tmp/
tsconfig.tsbuildinfo
####
#### Above content must match .gitignore ####
####