Create Dockerfile

This commit is contained in:
Jason
2020-04-18 14:26:00 +08:00
parent 9f38062a41
commit e2ad599855

18
Dockerfile Normal file
View File

@@ -0,0 +1,18 @@
FROM golang:alpine as builder
WORKDIR /tun2socks-src
COPY . /tun2socks-src
RUN apk add --no-cache \
git \
make \
gcc \
musl-dev \
&& go mod download \
&& make build \
&& mv ./bin/tun2socks /tun2socks
FROM alpine:latest
COPY --from=builder /tun2socks /
ENTRYPOINT ["/tun2socks"]