Skip to content

Instantly share code, notes, and snippets.

@struCoder
Created May 16, 2017 04:09
Show Gist options
  • Save struCoder/28f71156b58ff3cd1ab3092688ed7016 to your computer and use it in GitHub Desktop.
Save struCoder/28f71156b58ff3cd1ab3092688ed7016 to your computer and use it in GitHub Desktop.
gen_dockerfile
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