8 lines
232 B
Docker
8 lines
232 B
Docker
|
FROM alpine:3.13.6
|
||
|
LABEL org.opencontainers.image.authors="lxh@cxh.cn"
|
||
|
|
||
|
# 安装工具
|
||
|
RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.ustc.edu.cn/g' /etc/apk/repositories && \
|
||
|
apk add --update --no-cache tzdata
|
||
|
|
||
|
ENV TZ=Asia/Shanghai
|