SpoofDPI/Dockerfile

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"]