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
52 changes: 47 additions & 5 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,52 @@
frontend/webapp/node_modules
# VCS / IDE / local tooling
.git/
.github/
.vscode/
.cursor/
.devcontainer/
.tools/
**/.tools/

# Workspace / credentials
go.work
go.work.sum
go.work.bak
go.work.sum.bak
gha-creds-*.json
.env
kubeconfig

# Docs and non-build trees (root-context builds never COPY these)
docs/
scripts/
hooks/
own-observability/
tests/
tests-infrastructure/

# Local build / test artifacts
**/bin/
**/testbin/
**/dist/
**/artifacts/
**/__debug_bin*
**/*.log
**/*.logs
**/cover.out
**/.DS_Store

# CLI host binary (rebuilt inside the image)
cli/odigos
/odigos

# Frontend: deps and host build outputs (yarn build runs in the image)
**/node_modules/
frontend/webapp/.next/
frontend/webapp/out/
frontend/webapp/cypress/

# Dockerfiles are read via -f from the host; keep them out of the context
Dockerfile
odiglet/Dockerfile
odiglet/base.Dockerfile
odiglet/debug.Dockerfile
tests # not needed in context for odigos components builds
go.work
go.work.sum
gha-creds-*.json
Loading