Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Git
.git
.gitignore

Comment on lines +1 to +4

Copilot AI Mar 23, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

With the current docker-compose.yml, both services build from subdirectory contexts (./gdbui_server and ./webapp) and specify DockerFile.dev in those directories. Docker only applies .dockerignore from the build context root, so a repo-root .dockerignore will not affect these builds. To actually optimize builds, add .dockerignore files inside gdbui_server/ (backend) and/or update the compose build contexts to the repo root (and adjust dockerfile paths accordingly).

Copilot uses AI. Check for mistakes.
# Python
__pycache__
*.pyc
*.pyo
*.pyd
venv/
*.egg-info/

# Node
node_modules/
npm-debug.log

# Build output
build/
dist/

# Environment files
.env
.env.local

# OS files
.DS_Store
Thumbs.db

# IDE files
.vscode/
.idea/
Loading