Dockerfile 307 B

123456789101112
  1. FROM ubuntu
  2. LABEL maintainer="Stille <[email protected]>"
  3. RUN apt-get update
  4. RUN apt-get install -y wget curl zip git
  5. ENV TZ=Asia/Shanghai
  6. RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime \
  7. && echo $TZ > /etc/timezone \
  8. && apt-get install tzdata \
  9. && apt-get clean \
  10. && apt-get autoclean