Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
de280fd
adding initial container support
gauranshkumar Nov 13, 2025
87fb83a
adding initial container support
gauranshkumar Nov 13, 2025
b34f6c9
reducing docker image size
gauranshkumar Nov 13, 2025
f517a92
reducing docker image size
gauranshkumar Nov 13, 2025
bf5c73a
reducing docker image size
gauranshkumar Nov 13, 2025
ec15fae
reducing docker image size
gauranshkumar Nov 13, 2025
34837b1
revamp docker
gauranshkumar Nov 17, 2025
aaa18bb
revamp docker
gauranshkumar Nov 17, 2025
ebcf4f6
revamp docker for prod and dev
gauranshkumar Nov 17, 2025
5fc74be
CPU only torch to reduce image size
gauranshkumar Nov 17, 2025
8960bf3
CPU only torch to reduce image size with constraints
gauranshkumar Nov 17, 2025
ac4a6ba
docker bugfix
gauranshkumar Nov 17, 2025
3e82dad
docker bugfix
gauranshkumar Nov 17, 2025
8392458
completely working CPU only build
gauranshkumar Nov 17, 2025
350f907
GA autmatic build with CPU and GPU
gauranshkumar Nov 17, 2025
915b71d
fixing GA build error
gauranshkumar Nov 17, 2025
5aa3ccc
optimising build and fixing bugs
gauranshkumar Nov 20, 2025
894ce35
optimising build and fixing bugs
gauranshkumar Nov 20, 2025
e08ffed
optimising build and fixing bugs for GPU
gauranshkumar Nov 20, 2025
fdd3ef4
removed caching and fixed GPU build
gauranshkumar Nov 20, 2025
45385b5
removed caching and fixed GPU build
gauranshkumar Nov 20, 2025
0e0a915
more optimisations
gauranshkumar Nov 25, 2025
0c30fda
segregating builds for faster proceccing and removing cacheing
gauranshkumar Nov 27, 2025
230ead3
removed gpu-arm64 build and added further conditionals for imporoving…
gauranshkumar Nov 27, 2025
250a89d
removed pip and npm cacheing for smaller docker image
gauranshkumar Nov 27, 2025
5bd3282
making more space in GA runner for the NVIDIA builds
gauranshkumar Nov 28, 2025
e882c51
decluttering the GA build file and also reducing the clutter on docer…
gauranshkumar Nov 28, 2025
1f03585
[skip ci] added docs
gauranshkumar Nov 28, 2025
e734aee
adding an help tool
gauranshkumar Dec 2, 2025
ee96bc9
fixed docs url
gauranshkumar Dec 2, 2025
0c9ac49
working help button
gauranshkumar Dec 2, 2025
1269451
refactoring metadata
gauranshkumar Dec 2, 2025
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