This commit is contained in:
MassiveBox 2024-10-28 17:57:26 +01:00
parent 5ba8bcabdb
commit 49243858d7
Signed by: massivebox
GPG key ID: 9B74D3A59181947D
44 changed files with 39055 additions and 190 deletions

11
Dockerfile Normal file
View file

@ -0,0 +1,11 @@
FROM golang:1.22.7-alpine
RUN mkdir -p /app
WORKDIR /app
ADD . /app
RUN go mod tidy
RUN go build -o app .
CMD ["./app"]