mirror of
https://gitee.com/IrisVega/frp.git
synced 2024-11-01 22:31:29 +08:00
15 lines
177 B
Plaintext
15 lines
177 B
Plaintext
FROM alpine:3.12.0 AS temp
|
|
|
|
COPY bin/frps /tmp
|
|
|
|
RUN chmod -R 777 /tmp/frps
|
|
|
|
|
|
FROM alpine:3.12.0
|
|
|
|
WORKDIR /app
|
|
|
|
COPY --from=temp /tmp/frps /usr/bin
|
|
|
|
ENTRYPOINT ["/usr/bin/frps"]
|