initial commit

This commit is contained in:
2025-12-07 11:32:45 +01:00
commit c3daed67ac
35 changed files with 1315 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
FROM --platform=linux/amd64 golang:1.23-alpine
RUN apk add curl git
WORKDIR /app
COPY . .
RUN curl -fLo install.sh https://raw.githubusercontent.com/cosmtrek/air/master/install.sh \
&& chmod +x install.sh && sh install.sh && cp ./bin/air /bin/air
CMD "./entrypoint.sh"