mirror of
https://gitee.com/IrisVega/frp.git
synced 2024-11-01 22:31:29 +08:00
13 lines
180 B
Plaintext
13 lines
180 B
Plaintext
FROM golang:1.20 AS building
|
|
|
|
COPY . /building
|
|
WORKDIR /building
|
|
|
|
RUN make frps
|
|
|
|
FROM alpine:3
|
|
|
|
COPY --from=building /building/bin/frps /usr/bin/frps
|
|
|
|
ENTRYPOINT ["/usr/bin/frps"]
|