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-amd64
|
2019-07-10 18:11:58 +08:00
|
|
|
|
|
|
|
|
FROM golang
|
|
|
|
|
WORKDIR /
|
2019-07-11 00:37:15 +08:00
|
|
|
COPY --from=builder /frp/bin/amd64/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"]
|