Create Dockerfile

This commit is contained in:
izaac49 2026-02-12 21:11:00 +07:00 committed by GitHub
parent ddd87724ad
commit b202c52797
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

8
Dockerfile Normal file
View file

@ -0,0 +1,8 @@
FROM golang:1.25.7
WORKDIR /app
COPY . .
RUN go build -tags netgo -ldflags "-s -w" -o app
CMD ["./app"]