frp/dockerfiles/Dockerfile-for-frps

15 lines
211 B
Plaintext
Raw Permalink Normal View History

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