First commit

This commit is contained in:
corrado.mulas
2024-11-19 22:32:50 +01:00
parent 21d8aea921
commit a2e4ad87db
7 changed files with 268 additions and 0 deletions

10
Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM golang:1.20-alpine
WORKDIR /app
COPY . .
RUN go mod tidy
RUN go build -o app .
CMD ["./app"]