Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
9d87631
adding initial container support
gauranshkumar Nov 13, 2025
d0bf780
adding initial container support
gauranshkumar Nov 13, 2025
68c08c2
reducing docker image size
gauranshkumar Nov 13, 2025
f003cc2
reducing docker image size
gauranshkumar Nov 13, 2025
5e0a538
reducing docker image size
gauranshkumar Nov 13, 2025
c81f301
reducing docker image size
gauranshkumar Nov 13, 2025
ba2a7ae
revamp docker
gauranshkumar Nov 17, 2025
21e1264
revamp docker
gauranshkumar Nov 17, 2025
7b3d3fe
revamp docker for prod and dev
gauranshkumar Nov 17, 2025
69f8268
CPU only torch to reduce image size
gauranshkumar Nov 17, 2025
cc3db6e
CPU only torch to reduce image size with constraints
gauranshkumar Nov 17, 2025
1ea2de7
docker bugfix
gauranshkumar Nov 17, 2025
0d824dc
docker bugfix
gauranshkumar Nov 17, 2025
d1f815f
completely working CPU only build
gauranshkumar Nov 17, 2025
1f70677
GA autmatic build with CPU and GPU
gauranshkumar Nov 17, 2025
1ee57d5
fixing GA build error
gauranshkumar Nov 17, 2025
01046f7
optimising build and fixing bugs
gauranshkumar Nov 20, 2025
1ff5c30
optimising build and fixing bugs
gauranshkumar Nov 20, 2025
30bbdbb
optimising build and fixing bugs for GPU
gauranshkumar Nov 20, 2025
6a6fb6b
removed caching and fixed GPU build
gauranshkumar Nov 20, 2025
cf524b7
removed caching and fixed GPU build
gauranshkumar Nov 20, 2025
e8d785b
more optimisations
gauranshkumar Nov 25, 2025
a6b9a8c
segregating builds for faster proceccing and removing cacheing
gauranshkumar Nov 27, 2025
a884e57
removed gpu-arm64 build and added further conditionals for imporoving…
gauranshkumar Nov 27, 2025
9835d87
removed pip and npm cacheing for smaller docker image
gauranshkumar Nov 27, 2025
0683f31
making more space in GA runner for the NVIDIA builds
gauranshkumar Nov 28, 2025
6b07f4d
decluttering the GA build file and also reducing the clutter on docer…
gauranshkumar Nov 28, 2025
6aa4a8f
[skip ci] added docs
gauranshkumar Nov 28, 2025
69f7665
Reduced docs for docker on main readme
gauranshkumar Dec 30, 2025
4b82044
[skip ci] moved the image to official chainforge docker repo
gauranshkumar Dec 30, 2025
df9c088
Update Docker run command to use Docker Compose
gauranshkumar Dec 30, 2025
d197f39
Fixing groupby in VisNode
gauranshkumar Mar 23, 2026
bdc19e2
default retrival response inspector to retrival method
gauranshkumar Mar 23, 2026
2865d68
Fixing Groupby
gauranshkumar Mar 31, 2026
05cab27
updated example flows with bug fixes
gauranshkumar Mar 31, 2026
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
106 changes: 106 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,106 @@
# Git files
.git
.gitignore
.gitattributes
.github

# Documentation (we only need README.md)
docs/
INSTALL_GUIDE.md
CONTRIBUTING.md
LICENSE
*.md
!README.md

# Development files
.vscode
.idea
*.swp
*.swo
*~
.editorconfig

# Python cache and build artifacts
__pycache__
*.py[cod]
*$py.class
*.so
.Python
*.egg-info
dist
build
.pytest_cache
.coverage
htmlcov
*.egg
MANIFEST
.mypy_cache
.ruff_cache
.tox
.nox
*.cover
.hypothesis

# Node (we'll install and build in Docker)
chainforge/react-server/node_modules
chainforge/react-server/.pnp
chainforge/react-server/.pnp.js
chainforge/react-server/coverage
chainforge/react-server/build

# Testing and development
tests/
test/
*.test.js
*.test.ts
*.test.tsx
*.spec.js
*.spec.ts
*.spec.tsx
coverage/
.coverage
*.log
*.logs

# Environment files
.env
.env.*
!.env.example
*.local

# ChainForge specific
chainforge/cache
chainforge/examples/oaievals/
chainforge_assets/
packages/
jobs/
data/

# Docker files (avoid recursive copying)
Dockerfile*
docker-compose*.yml
.dockerignore

# CI/CD
.circleci
.travis.yml
.gitlab-ci.yml
azure-pipelines.yml

# IDE and editor files
*.sublime-*
.vscode
.idea
*.iml

# OS files
.DS_Store
Thumbs.db
Desktop.ini

# Temporary files
*.tmp
*.temp
*.bak
*.swp
*~
Loading
Loading