Files
frp/dockerfiles/Dockerfile-for-frpc
fatedier 0a798a7a69
Some checks failed
golangci-lint / lint (push) Has been cancelled
Close stale issues and PRs / stale (push) Has been cancelled
update go version to 1.24 (#4960)
2025-08-27 15:10:36 +08:00

15 lines
211 B
Plaintext

FROM golang:1.24 AS building
COPY . /building
WORKDIR /building
RUN make frpc
FROM alpine:3
RUN apk add --no-cache tzdata
COPY --from=building /building/bin/frpc /usr/bin/frpc
ENTRYPOINT ["/usr/bin/frpc"]