frp/dockerfiles/Dockerfile-for-frps

15 lines
211 B
Plaintext
Raw Permalink Normal View History

2024-10-17 16:22:41 +07:00
FROM golang:1.23 AS building
2020-09-30 10:05:34 +07:00
COPY . /building
WORKDIR /building
2020-09-30 10:05:34 +07:00
2022-04-29 00:15:42 +07:00
RUN make frps
2020-09-30 10:05:34 +07:00
2022-04-29 00:15:42 +07:00
FROM alpine:3
2020-09-30 10:05:34 +07:00
2024-10-18 11:03:17 +07:00
RUN apk add --no-cache tzdata
COPY --from=building /building/bin/frps /usr/bin/frps
2020-09-23 13:54:40 +07:00
ENTRYPOINT ["/usr/bin/frps"]