Introduce a multi-stage Dockerfile, docker-compose setup, and a Gitea Actions workflow to automate building and pushing images to the registry. The configuration includes an entrypoint script for persistent logging and a .dockerignore to optimize the build context.
32 lines
248 B
Plaintext
32 lines
248 B
Plaintext
# Build artifacts
|
|
build/
|
|
tmp/
|
|
*.exe
|
|
|
|
# Test artifacts
|
|
*.out
|
|
*.test
|
|
coverage.*
|
|
*.coverprofile
|
|
|
|
# Dev tooling
|
|
.air.toml
|
|
|
|
# Secrets & local config
|
|
.env
|
|
|
|
# Version control
|
|
.git/
|
|
.gitignore
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
|
|
# Docs
|
|
*.md
|
|
LICENSE
|
|
|
|
# Claude
|
|
.claude/
|