Initial Docker support

This commit is contained in:
Manfred Touron 2016-08-15 16:23:50 +02:00
parent a655f5699b
commit 3fcf7efc5a
No known key found for this signature in database
GPG Key ID: 9CCF47DF1FD978A1
2 changed files with 16 additions and 0 deletions

5
.dockerignore Normal file
View File

@ -0,0 +1,5 @@
Dockerfile
.git
*~
*#
.#*

11
Dockerfile Normal file
View File

@ -0,0 +1,11 @@
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