Skip to content

Commit 871d9e0

Browse files
authored
Merge pull request #85 from Viktor45/patch-1
Create Dockerfile
2 parents 53a2e88 + 3f90cd3 commit 871d9e0

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

Dockerfile

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
FROM golang:alpine as builder
2+
3+
WORKDIR /go
4+
5+
RUN go install github.com/xvzc/SpoofDPI/cmd/spoof-dpi@latest
6+
7+
FROM alpine:latest
8+
9+
WORKDIR /
10+
11+
COPY --from=builder /go/bin/spoof-dpi .
12+
13+
ENTRYPOINT ["./spoof-dpi"]

0 commit comments

Comments
 (0)