This commit is contained in:
2025-05-09 07:28:10 +02:00
parent 5adf974949
commit 125135b755
4 changed files with 158 additions and 0 deletions

8
Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
FROM golang:1.24.1
WORKDIR /app
COPY go.mod ./
RUN go mod download
COPY *.go ./
RUN CGO_ENABLED=0 GOOS=linux go build -o /goprg
EXPOSE 8080
CMD ["/goprg"]