diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 000000000..7a6f3aae1 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,8 @@ +FROM golang:1.25.7 + +WORKDIR /app +COPY . . + +RUN go build -tags netgo -ldflags "-s -w" -o app + +CMD ["./app"]