frp/dockerfiles/Dockerfile-for-frps
2024-12-25 15:05:12 +08:00

16 lines
260 B
Plaintext

FROM golang:1.23 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
COPY frps.toml /etc/frps/
ENTRYPOINT ["/usr/bin/frps -c /etc/frps/frps.toml"]