Gogs 3 years ago
parent
commit
ee0c9db77a
1 changed files with 10 additions and 0 deletions
  1. 10 0
      Dockerfile

+ 10 - 0
Dockerfile

@@ -0,0 +1,10 @@
+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/
+RUN chmod +x /go/bin/applecheckmode
+WORKDIR /go/bin
+CMD ["/go/bin/applecheckmode", "applecheckmode", "--config=/go/bin/config.yaml"]
+EXPOSE 9001