mirror of
https://github.com/xjasonlyu/tun2socks.git
synced 2024-12-30 02:37:01 +00:00
19 lines
308 B
Docker
19 lines
308 B
Docker
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"]
|