16 lines
260 B
Plaintext
16 lines
260 B
Plaintext
FROM golang:1.23 AS building
|
|
|
|
COPY . /building
|
|
WORKDIR /building
|
|
|
|
RUN make frps
|
|
|
|
FROM alpine:3
|
|
|
|
RUN apk add --no-cache tzdata
|
|
|
|
COPY --from=building /building/bin/frps /usr/bin/frps
|
|
COPY frps.toml /etc/frps/
|
|
|
|
ENTRYPOINT ["/usr/bin/frps -c /etc/frps/frps.toml"]
|