2024-02-25 01:09:15 +01:00
|
|
|
####################################################################################################
|
|
|
|
## Builder
|
|
|
|
####################################################################################################
|
|
|
|
FROM rust:latest AS builder
|
|
|
|
|
|
|
|
WORKDIR /worker
|
|
|
|
COPY ./ .
|
2024-09-16 17:10:56 +08:00
|
|
|
RUN cargo build --release
|
2024-02-25 01:09:15 +01:00
|
|
|
|
|
|
|
|
|
|
|
####################################################################################################
|
|
|
|
## Final image
|
|
|
|
####################################################################################################
|
|
|
|
FROM ubuntu:latest
|
|
|
|
|
|
|
|
RUN apt update && apt install -y iproute2 && apt clean all
|
|
|
|
|
2024-09-26 10:54:54 +08:00
|
|
|
COPY --from=builder /worker/target/release/tun2proxy-bin /usr/bin/tun2proxy-bin
|
2024-02-25 01:09:15 +01:00
|
|
|
|
2024-09-26 10:54:54 +08:00
|
|
|
ENTRYPOINT ["/usr/bin/tun2proxy-bin", "--setup"]
|