Create Dockerfile

Add simple Dockerfile for latest version
This commit is contained in:
Viktor45 2024-08-03 14:24:31 +03:00 committed by GitHub
parent 7b64d37b60
commit db23a85757
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

27
Dockerfile Normal file
View File

@ -0,0 +1,27 @@
FROM golang:alpine
WORKDIR /go
RUN go install github.com/xvzc/SpoofDPI/cmd/spoof-dpi@latest
ENV ADDRESS=0.0.0.0
ENV DNS=1.1.1.1
ENV PORT=8080
ENV DEBUG=false
ENV NO_BANNER=true
ENV TIMEOUT=500
ENV URLS=
ENV PATTERN=
ENV WINDOW_SIZE=0
EXPOSE 8080
CMD ["/bin/sh", "-c", "/go/bin/spoof-dpi -addr=${ADDRESS} -debug=${DEBUG} -dns-addr=${DNS} -port=${PORT} -no-banner=${NO_BANNER} -timeout=${TIMEOUT} -window-size=${WINDOW_SIZE} $(echo \"${URLS}\" | tr -d ' ' | tr ',' '\n' | sed -e 's/^/-url=/') -pattern ${PATTERN}"]