mirror of
https://github.com/xvzc/SpoofDPI.git
synced 2024-12-22 06:15:51 +00:00
14 lines
202 B
Docker
14 lines
202 B
Docker
FROM golang:alpine as builder
|
|
|
|
WORKDIR /go
|
|
|
|
RUN go install github.com/xvzc/SpoofDPI/cmd/spoofdpi@latest
|
|
|
|
FROM alpine:latest
|
|
|
|
WORKDIR /
|
|
|
|
COPY --from=builder /go/bin/spoofdpi .
|
|
|
|
ENTRYPOINT ["./spoofdpi"]
|