Dockerfile 250 B

123456
  1. # syntax=docker/dockerfile:1
  2. FROM alpine:latest
  3. RUN apk add --no-cache --no-progress --virtual .build-deps tzdata && \
  4. cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && \
  5. echo "Asia/Shanghai" > /etc/timezone && \
  6. apk del .build-deps