frp/dockerfiles/Dockerfile-for-frps

15 lines
211 B
Plaintext
Raw Normal View History

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