Initial Commit

This commit is contained in:
Daniel Mason 2025-01-16 00:06:17 +13:00
parent f278ffc00c
commit a8b2007f05
Signed by: idanoo
GPG key ID: 387387CDBC02F132
13 changed files with 386 additions and 0 deletions

10
air/Dockerfile Normal file
View file

@ -0,0 +1,10 @@
FROM public.ecr.aws/docker/library/golang:1.23.4
WORKDIR /app
RUN go install github.com/air-verse/air@latest
COPY src/go.mod src/go.sum ./
RUN go mod download
CMD ["air", "-c", ".air.toml"]