Compare commits

..

2 Commits

Author SHA1 Message Date
HiGarfield
3dc19b7994 Merge ee1e4d33f8 into f49e6adedf 2023-11-07 11:43:51 +08:00
yancey
f49e6adedf remove Dockerfile 2023-11-06 03:19:46 -05:00

View File

@@ -1,13 +0,0 @@
FROM alpine:3.6 as builder
WORKDIR /
RUN apk add --no-cache git build-base linux-headers && \
git clone https://github.com/wangyu-/udp2raw-tunnel.git && \
cd udp2raw-tunnel && \
make dynamic
FROM alpine:3.6
RUN apk add --no-cache libstdc++ iptables
COPY --from=builder /udp2raw-tunnel/udp2raw_dynamic /bin/
ENTRYPOINT [ "/bin/udp2raw_dynamic" ]