mirror of https://github.com/fatedier/frp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
320 B
15 lines
320 B
FROM golang:1.5
|
|
|
|
MAINTAINER fatedier
|
|
|
|
RUN echo "[common]\nbind_addr = 0.0.0.0\nbind_port = 7000\n[test]\npasswd = 123\nbind_addr = 0.0.0.0\nlisten_port = 80" > /usr/share/frps.ini
|
|
|
|
ADD ./ /usr/share/frp/
|
|
|
|
RUN cd /usr/share/frp && make
|
|
|
|
EXPOSE 80
|
|
EXPOSE 7000
|
|
|
|
CMD ["/usr/share/frp/bin/frps", "-c", "/usr/share/frps.ini"]
|