1234567891011 |
- FROM golang:1.9.2
- RUN ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
- RUN echo 'Asia/Shanghai' > /etc/timezone
- COPY applecheckmode /go/bin/
- COPY config.yaml /go/bin/
- COPY xieyi /go/bin/xieyi
- RUN chmod +x /go/bin/applecheckmode
- WORKDIR /go/bin
- CMD ["/go/bin/applecheckmode", "applecheckmode", "--config=/go/bin/config.yaml"]
- EXPOSE 9001
|