- Expanded `.dockerignore` to include additional build artifacts, OS files, test files, IDE files, logs, and docs. - Enhanced Gitea CI workflow by integrating `docker/setup-buildx-action` and switching to `docker/build-push-action` with caching support.
38 lines
No EOL
286 B
Text
38 lines
No EOL
286 B
Text
# Build artifacts
|
|
target/
|
|
node_modules/
|
|
dist/
|
|
build/
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.iml
|
|
.eclipse/
|
|
.settings/
|
|
|
|
# Git
|
|
.git/
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Tests
|
|
src/test/
|
|
**/*test.js
|
|
**/*.spec.js
|
|
|
|
# Documentation
|
|
*.md
|
|
docs/
|
|
|
|
# Environment
|
|
.env
|
|
.env.* |