frp/dockerfiles/Dockerfile-for-frps

15 lines
211 B
Plaintext
Raw Permalink Normal View History

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