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/frpc /tmp
|
|
|
|
RUN chmod -R 777 /tmp/frpc
|
|
|
|
|
|
FROM alpine:3.12.0
|
|
|
|
WORKDIR /app
|
|
|
|
COPY --from=temp /tmp/frpc /usr/bin
|
|
|
|
ENTRYPOINT ["/usr/bin/frpc"]
|