add TZ for mc

This commit is contained in:
Stille 2022-02-16 12:50:18 +08:00
parent 2d3691f942
commit 81636d488f
1 changed files with 4 additions and 0 deletions

View File

@ -1,6 +1,10 @@
FROM alpine
LABEL maintainer="Stille <stille@ioiox.com>"
ENV TZ=Asia/Shanghai
RUN apk add --no-cache tzdata \
&& ln -snf /usr/share/zoneinfo/$TZ /etc/localtime \
&& echo $TZ > /etc/timezone
RUN if [ "$(uname -m)" = "x86_64" ]; then export PLATFORM=amd64 ; else if [ "$(uname -m)" = "aarch64" ]; then export PLATFORM=arm64 ; fi fi \
&& wget https://dl.minio.io/client/mc/release/linux-${PLATFORM}/mc -O /usr/local/bin/mc \
&& chmod +x /usr/local/bin/mc