mirror of
https://github.com/fatedier/frp.git
synced 2024-11-08 17:14:27 +01: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"]
|