mirror of
https://github.com/e1732a364fed/v2ray_simple.git
synced 2025-12-24 13:27:56 +08:00
10 lines
294 B
Docker
10 lines
294 B
Docker
FROM golang:alpine AS builder
|
|
RUN apk update && apk add --no-cache git make
|
|
WORKDIR /build
|
|
RUN git clone https://github.com/e1732a364fed/v2ray_simple.git . &&
|
|
make -C ./cmd/verysimple
|
|
|
|
FROM scratch
|
|
COPY --from=builder /build/cmd/verysimple/verysimple /verysimple
|
|
ENTRYPOINT ["/verysimple"]
|