mirror of
https://github.com/fatedier/frp.git
synced 2025-01-20 17:03:08 +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/frps /tmp
|
|
|
|
RUN chmod -R 777 /tmp/frps
|
|
|
|
|
|
FROM alpine:3
|
|
|
|
WORKDIR /app
|
|
|
|
COPY --from=temp /tmp/frps /usr/bin
|
|
|
|
ENTRYPOINT ["/usr/bin/frps"]
|