-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.dockerignore
40 lines (35 loc) · 1 KB
/
.dockerignore
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
# Common exclusions for all projects
**/.git
# **/.env
**/.DS_Store
web/node_modules/
node_modules/
node_modules/*
target/
web/dist/
dist/*
build/
coverage/
# Rust-specific exclusions
**/Cargo.lock # Avoid caching issues; include if reproducible builds are needed
**/Cargo.toml.orig # Temporary files created during Cargo updates
**/target # Compiled Rust files
**/debug/ # Debug build artifacts
**/release/ # Release build artifacts
# Vite-specific exclusions
**/node_modules # Dependencies are re-installed during build
**/dist # Build output directory
**/.vite # Temporary Vite cache
**/vite.config.ts # Development-only configurations, if any
# Docker-specific exclusions
Dockerfile*
.dockerignore # Avoid copying itself into the image
# Logs and temporary files
**/*.log # Log files
**/tmp # Temporary directories
**/out # Build output
**/npm-debug.log* # npm debug logs
# Editor/IDE settings
**/.vscode
**/.idea
**/*.swp