frp/dockerfiles/Dockerfile-for-frps

16 lines
260 B
Plaintext
Raw 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
2024-12-25 15:05:12 +08:00
COPY frps.toml /etc/frps/
2020-09-23 14:54:40 +08:00
2024-12-25 15:05:12 +08:00
ENTRYPOINT ["/usr/bin/frps -c /etc/frps/frps.toml"]