blob: 7b463400d4fb4442d89f02941f84b2f88da8b910 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# --------------------------------------------------------------------------
# .dockerignore — Files excluded from the Docker build context.
#
# Keeping node_modules and build artifacts out of the context speeds up
# `docker build` significantly and avoids conflicts with the container's
# own dependency tree.
# --------------------------------------------------------------------------
node_modules
dist
.git
*.log
.ask_user.md
ai_prompt.md
docker_readme.md
README.md
.tool-versions
|