We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8eadec commit 21456bcCopy full SHA for 21456bc
.dockerignore
@@ -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