mirror of
https://gitee.com/IrisVega/frp.git
synced 2024-11-01 22:31:29 +08:00
ff7b8b0b62
update docker file to pick alpine:3
15 lines
167 B
Plaintext
15 lines
167 B
Plaintext
FROM alpine:3 AS temp
|
|
|
|
COPY bin/frpc /tmp
|
|
|
|
RUN chmod -R 777 /tmp/frpc
|
|
|
|
|
|
FROM alpine:3
|
|
|
|
WORKDIR /app
|
|
|
|
COPY --from=temp /tmp/frpc /usr/bin
|
|
|
|
ENTRYPOINT ["/usr/bin/frpc"]
|