Maverick6022/dataforge
0
1# DataForge — .dockerignore2# Keep the build context small and fast3 4# Python artifacts5__pycache__/6*.pyc7*.pyo8*.pyd9*.egg-info/10dist/11build/12*.egg13catboost_info/14 15# Virtual environments (Docker creates its own)16.venv/17venv/18env/19 20# Development and IDE files21.git/22.gitignore23.github/24.vscode/25.idea/26*.swp27*.swo28 29# Documentation30README.md31*.md32 33# Test files34tests/35test_*36*_test.py37 38# Temporary files39tmp/40temp/41*.tmp42*.log43 44# OS files45.DS_Store46Thumbs.db47desktop.ini48 49# CI/CD50.github/51.circleci/52 53# Docker files themselves (not needed inside the image)54Dockerfile55docker-compose.yml56.dockerignore57 58# Data and Models59*.csv60*.tsv61*.parquet62*.jsonl63*.pt64*.pth65*.bin66*.h567*.onnx68*.pkl69data/70models/71datasets/72 