barycenter/.dockerignore
Till Wegmueller 0ce360f004
fix: commit Cargo.lock for reproducible builds
Cargo.lock should be committed for applications (not libraries) to ensure
reproducible builds across environments. This is required for Docker builds
and is the recommended practice per Rust guidelines.

Removed Cargo.lock from:
- .gitignore
- .dockerignore

This fixes the Docker build error:
  ERROR: "/Cargo.lock": not found
2025-11-29 16:14:39 +01:00

45 lines
375 B
Text

# Git
.git/
.gitignore
.github/
# IDE
.idea/
.vscode/
*.swp
*.swo
*~
# Rust
target/
# Note: Cargo.lock is needed for reproducible builds
# Build artifacts
*.db
*.db-shm
*.db-wal
# Data directories
data/
crabidp.db
# Documentation
README.md
CONTRIBUTING.md
CLAUDE.md
docs/
# Tests
tests/
# CI/CD
.github/
# Config
.config/
.claude/
# Temporary files
tmp/
*.tmp
*.log