Created
May 16, 2017 04:09
-
-
Save struCoder/28f71156b58ff3cd1ab3092688ed7016 to your computer and use it in GitHub Desktop.
gen_dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM alpine:3.4 | |
ENV TZ 'Asia/Shanghai' | |
RUN apk upgrade --no-cache && \ | |
apk add --no-cache bash tzdata && \ | |
mkdir /lib64 && ln -s /lib/libc.musl-x86_64.so.1 /lib64/ld-linux-x86-64.so.2 && \ | |
ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && \ | |
echo "Asia/Shanghai" > /etc/timezone && \ | |
rm -rf /var/cache/apk/* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment