dev: add Docker compose development stack with Air reload

This commit is contained in:
achmad
2026-05-11 08:39:54 +07:00
parent 15d9d4225c
commit 0c6ccc8a47
5 changed files with 129 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
FROM golang:1.26-alpine
RUN apk add --no-cache git bash build-base
RUN go install github.com/air-verse/air@latest
WORKDIR /workspace
CMD ["air", "-c", ".air.toml"]