Skip to content

Commit eb94efd

Browse files
committed
chore: Update .dockerignore to streamline ignored files and directories
1 parent d78f01f commit eb94efd

File tree

1 file changed

+10
-13
lines changed

1 file changed

+10
-13
lines changed

.dockerignore

Lines changed: 10 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,20 @@
11
*/.gitignore
2-
# Ignore node_modules directory
3-
frontend/node_modules/
42

5-
frontend/.nx/cache/
3+
# Node/Nx artifacts (keep build contexts small)
4+
**/node_modules
5+
**/.nx
66

7-
# Ignore package-lock.json or yarn.lock file
8-
frontend/package-lock.json
9-
frontend/yarn.lock
7+
# Frontend build outputs and logs
8+
services/frontend/dist
9+
services/frontend/tmp
10+
services/frontend/coverage
11+
services/frontend/apps/*/dist
12+
services/frontend/*.log
1013

11-
# Ignore any build artifacts or compiled files
12-
frontend/dist/
13-
frontend/build/
14-
frontend/*.log
15-
16-
# Ignore python envs and compiled python files
14+
# Python envs and compiled python files
1715
*/venv
1816
*/.venv
1917
*/.env
2018
*/*.pyc
2119

22-
2320
**/.notebooks

0 commit comments

Comments
 (0)