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 d78f01f commit eb94efdCopy full SHA for eb94efd
.dockerignore
@@ -1,23 +1,20 @@
1
*/.gitignore
2
-# Ignore node_modules directory
3
-frontend/node_modules/
4
5
-frontend/.nx/cache/
+# Node/Nx artifacts (keep build contexts small)
+**/node_modules
+**/.nx
6
7
-# Ignore package-lock.json or yarn.lock file
8
-frontend/package-lock.json
9
-frontend/yarn.lock
+# Frontend build outputs and logs
+services/frontend/dist
+services/frontend/tmp
10
+services/frontend/coverage
11
+services/frontend/apps/*/dist
12
+services/frontend/*.log
13
-# Ignore any build artifacts or compiled files
-frontend/dist/
-frontend/build/
14
-frontend/*.log
15
-
16
-# Ignore python envs and compiled python files
+# Python envs and compiled python files
17
*/venv
18
*/.venv
19
*/.env
20
*/*.pyc
21
22
23
**/.notebooks
0 commit comments