Dockerfile 274 B

1234567891011
  1. FROM golang:1.9.2
  2. RUN ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
  3. RUN echo 'Asia/Shanghai' > /etc/timezone
  4. COPY css /go/bin/css
  5. COPY images /go/bin/images
  6. COPY js /go/bin/js
  7. COPY fillin.html /go/bin
  8. COPY home.html /go/bin
  9. COPY index.html /go/bin
  10. WORKDIR /go/bin