1
1
mirror of https://github.com/fatedier/frp.git synced 2025-07-03 05:50:37 +02:00

Merge pull request from GeorgeYuen/diamondyuan

add Dockerfile_multiple_build
This commit is contained in:
fatedier
2017-09-06 01:07:37 -05:00
committed by GitHub

21
Dockerfile_multiple_build Normal file

@ -0,0 +1,21 @@
FROM golang:1.8 as frpBuild
COPY . /go/src/github.com/fatedier/frp
ENV CGO_ENABLED=0
RUN cd /go/src/github.com/fatedier/frp \
&& make
FROM alpine:3.6
COPY --from=frpBuild /go/src/github.com/fatedier/frp/bin/frpc /
COPY --from=frpBuild /go/src/github.com/fatedier/frp/conf/frpc.ini /
COPY --from=frpBuild /go/src/github.com/fatedier/frp/bin/frps /
COPY --from=frpBuild /go/src/github.com/fatedier/frp/conf/frps.ini /
EXPOSE 80 443 6000 7000 7500
WORKDIR /
CMD ["/frps","-c","frps.ini"]