Files
frp/dockerfiles/Dockerfile-for-frps
Mxmilu666 be252de683 chore(workflows): remove old build and push workflow file
fix(dockerfiles): update base image to golang:1.25 for frpc and frps
2026-01-16 00:19:10 +08:00

15 lines
211 B
Plaintext

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