Files
profilarr/.dockerignore
2026-01-19 20:23:10 +10:30

86 lines
2.6 KiB
Plaintext

# =============================================================================
# Docker Build Exclusions
# =============================================================================
# These files are NOT sent to Docker during build, making builds faster
# and images smaller.
# -----------------------------------------------------------------------------
# Dependencies (reinstalled during build)
# -----------------------------------------------------------------------------
node_modules/
.npm/
.pnpm-store/
# -----------------------------------------------------------------------------
# Build outputs (rebuilt during build)
# -----------------------------------------------------------------------------
dist/
.svelte-kit/
# -----------------------------------------------------------------------------
# .NET build artifacts
# -----------------------------------------------------------------------------
src/services/parser/bin/
src/services/parser/obj/
# -----------------------------------------------------------------------------
# Git (not needed in image)
# -----------------------------------------------------------------------------
.git/
.gitignore
.gitattributes
# -----------------------------------------------------------------------------
# IDE and editor files
# -----------------------------------------------------------------------------
.vscode/
.idea/
*.swp
*.swo
*~
# -----------------------------------------------------------------------------
# Documentation (not needed in image)
# -----------------------------------------------------------------------------
*.md
!README.md
docs/
LICENSE
# -----------------------------------------------------------------------------
# Development and test files
# -----------------------------------------------------------------------------
.env
.env.*
*.log
*.tmp
temp/
coverage/
.nyc_output/
# -----------------------------------------------------------------------------
# Docker files themselves (prevent recursion)
# -----------------------------------------------------------------------------
Dockerfile*
compose.yml
compose.yaml
docker-compose.yml
docker-compose.yaml
# Keep entrypoint script, ignore the rest
!docker/entrypoint.sh
# -----------------------------------------------------------------------------
# CI/CD
# -----------------------------------------------------------------------------
.github/
.gitlab-ci.yml
.travis.yml
Jenkinsfile
# -----------------------------------------------------------------------------
# Misc
# -----------------------------------------------------------------------------
*.tgz
*.tar.gz
*.zip