Skip to content

Commit 21456bc

Browse files
nipunn1313Convex, Inc
authored and
Convex, Inc
committed
copybara the dockerignore (#33795)
GitOrigin-RevId: b1651ef779b372131e093273c6ff412f655ade07
1 parent a8eadec commit 21456bc

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

.dockerignore

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# Start by ignoring everything
2+
**/*
3+
4+
# Keep the Justfile
5+
!/Justfile
6+
7+
# Rust-related includes
8+
!/Cargo.*
9+
!/crates*/*
10+
!/.cargo/*
11+
!/rust-toolchain
12+
!/self-hosted/*
13+
14+
# Node/NPM-related includes
15+
!/.nvmrc
16+
!/npm-packages*/*
17+
!/scripts/*
18+
19+
# Re-exclude common build/cache directories that might exist under the included directories above.
20+
# Docker uses the last matching-pattern for any file.
21+
# Node/NPM
22+
**/node_modules/
23+
**/.output/
24+
**/.next/
25+
**/.vercel
26+
**/*.log
27+
28+
# Build outputs
29+
**/dist/
30+
**/tmpDist*/
31+
**/temp/
32+
**/.docusaurus/
33+
/npm-packages/docs/build/
34+
/npm-packages/docs/static/
35+
**/.mypy_cache/
36+
**/__pycache__/

0 commit comments

Comments
 (0)