Skip to content

Commit 1bd43c7

Browse files
committed
dockerfile added :)
1 parent 474404a commit 1bd43c7

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

Dockerfile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
FROM golang:1.23.4-alpine
2+
3+
WORKDIR /app
4+
5+
COPY . .
6+
7+
RUN go build -o main main.go
8+
9+
EXPOSE 1881
10+
11+
CMD ["./main"]

0 commit comments

Comments
 (0)