martin/.dockerignore

38 lines
560 B
Plaintext
Raw Normal View History

# 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/
2024-07-12 23:17:45 +03:00
####
#### This must match .gitignore ####
2024-07-12 23:17:45 +03:00
####
.DS_Store
target/
**/*.rs.bk
.idea/
.vscode/
test_log*
*.profraw
pg_data/
config.yml
tests/output/
2024-07-12 23:17:45 +03:00
tests/mbtiles_temp_files/
tmp/
.aws-sam/
2024-07-12 23:17:45 +03:00
**/node_modules/
**/dist/
####
#### Above content must match .gitignore ####
####