mirror of
https://github.com/p4gefau1t/trojan-go.git
synced 2024-04-21 12:21:34 +00:00
12 lines
282 B
Docker
12 lines
282 B
Docker
FROM golang:latest AS builder
|
|
|
|
WORKDIR /
|
|
RUN git clone --depth=1 https://github.com/p4gefau1t/trojan-go.git
|
|
WORKDIR /trojan-go
|
|
RUN go build -tags "server auth_config" -ldflags "-s -w" -o /trojan
|
|
|
|
FROM debian:buster-slim
|
|
WORKDIR /root/
|
|
COPY --from=builder /trojan .
|
|
CMD ["./trojan"]
|