FROM golang:latest
#国内代理加速
ENV GOPROXY=https://goproxy.cn
WORKDIR $GOPATH/src/github.com/smartoilets/gateway
COPY . $GOPATH/src/github.com/smartoilets/gateway
RUN go build -o ygw *.go
EXPOSE 10086
ENTRYPOINT ["./ygw"]