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