- Add multi-stage Dockerfile (JDK build, JRE runtime) - Use Eclipse Temurin 21 base images - Configure health check on /health endpoint - Add .dockerignore for efficient builds - Environment variables for config override
31 lines
288 B
Plaintext
31 lines
288 B
Plaintext
# Build artifacts
|
|
out/
|
|
.bsp/
|
|
|
|
# Git
|
|
.git/
|
|
.gitignore
|
|
|
|
# IDE
|
|
.idea/
|
|
*.iml
|
|
.vscode/
|
|
|
|
# Reference implementation
|
|
golem15-wintercms-starter/
|
|
|
|
# Documentation
|
|
*.md
|
|
!README.md
|
|
|
|
# Planning files
|
|
.planning/
|
|
|
|
# Infra (not needed in app container)
|
|
infra/
|
|
|
|
# Local environment
|
|
.env
|
|
.env.local
|
|
*.log
|