- Dockerfile builds Go source in stage 2 (golang:1.22) instead of copying pre-built binary - Image renamed to git24hcom/authelia-api:latest - docker-compose.yml: updated image name, added build directive - .gitignore: ignore root-level authelia-api binary - Removed pre-built binary from git tracking (now built in Docker)
60 lines
No EOL
511 B
Text
60 lines
No EOL
511 B
Text
# Binaries
|
|
authelia-api
|
|
src/authelia-api
|
|
src/server
|
|
|
|
# Dependency directories
|
|
vendor/
|
|
node_modules/
|
|
|
|
# Go build artifacts
|
|
*.exe
|
|
*.exe~
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
|
|
# Test binary
|
|
*.test
|
|
|
|
# Output of go build
|
|
bin/
|
|
pkg/
|
|
|
|
# Coverage files
|
|
*.out
|
|
coverage.html
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# IDE files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Local databases
|
|
*.db
|
|
*.sqlite
|
|
*.sqlite3
|
|
authelia-api.db
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
|
|
# Backup files
|
|
*.bak
|
|
*.backup
|
|
*~ |