Skip to content

Commit

Permalink
chore(docker): ignore all target directories (#134)
Browse files Browse the repository at this point in the history
I was trying to build a celestia-prover Docker image and it took forever
transferring over 20 GB of context. It appears to have been copying
nested `target/` directories inside the blevm subdirectory. This change
makes Docker ignore all the target directories, not just the one at the
repo root.
  • Loading branch information
rootulp authored Feb 5, 2025
1 parent ab26692 commit a92c8e8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
.tmp
build
/target
*.bin

# Ignore all target directories
**/target/

0 comments on commit a92c8e8

Please sign in to comment.