2019-07-10 18:11:58 +08:00
|
|
|
FROM golang AS builder
|
|
|
|
|
WORKDIR /frp
|
2019-07-11 00:37:15 +08:00
|
|
|
COPY go.mod .
|
|
|
|
|
COPY go.sum .
|
|
|
|
|
RUN go mod download
|
2019-07-10 18:11:58 +08:00
|
|
|
COPY . .
|
2019-07-11 00:37:15 +08:00
|
|
|
RUN make frps-arm64
|
2019-07-10 18:11:58 +08:00
|
|
|
|
2019-07-11 00:37:15 +08:00
|
|
|
FROM arm64v8/golang:alpine
|
2019-07-10 18:11:58 +08:00
|
|
|
WORKDIR /
|
2019-07-11 00:37:15 +08:00
|
|
|
COPY --from=builder /frp/bin/arm64/frps /usr/local/bin/frps
|
2019-07-10 18:11:58 +08:00
|
|
|
COPY --from=builder /frp/conf/frps.ini /etc/frps.ini
|
|
|
|
|
EXPOSE 7000 7500
|
|
|
|
|
CMD ["frps", "--config", "/etc/frps.ini"]
|