mirror of
https://gitee.com/IrisVega/frp.git
synced 2024-11-01 22:31:29 +08:00
12 lines
291 B
Docker
12 lines
291 B
Docker
|
FROM golang:1.6
|
||
|
|
||
|
RUN go get github.com/tools/godep
|
||
|
COPY . /go/src/github.com/fatedier/frp
|
||
|
RUN cd /go/src/github.com/fatedier/frp \
|
||
|
&& make \
|
||
|
&& mv bin/frpc bin/frps /usr/local/bin \
|
||
|
&& mv conf/*.ini /
|
||
|
WORKDIR /
|
||
|
ENTRYPOINT ["frps"]
|
||
|
EXPOSE 6000 7000 7500
|