Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 35 additions & 3 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,35 @@
target
contracts/cache
contracts/node-modules
# Rust build artifacts
target/
*/target/

# Node.js dependencies
node_modules/
*/node_modules/
contracts/node_modules/
ipc-ui/frontend/node_modules/
demos/*/node_modules/

# Contract build artifacts
contracts/cache/
# contracts/out/ # Needed by Docker build
# contracts/lib/ # Needed by Forge for remappings
contracts/broadcast/

# Git directory
.git/

# Build directories
build/
*/build/

# Cache directories
.cache/
*/cache/

# Temporary files
*.tmp
.DS_Store

# IDE files
.vscode/
.idea/
2 changes: 1 addition & 1 deletion contracts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
],
"scripts": {
"prepack": "sh -c 'cp ../LICENSE-* .'",
"preinstall": "git submodule update --init --recursive",
"preinstall": "git submodule update --init --recursive || true",
"postpack": "sh -c 'rm -f LICENSE-*'"
},
"repository": {
Expand Down
Loading