@@ -16,7 +16,12 @@ RUN sed -i 's/deb.debian.org/mirrors.aliyun.com/g' /etc/apt/sources.list | |||
# && apt-get clean | |||
RUN ln -sf /usr/share/zoneinfo/$TZ /etc/localtime | |||
# RUN ln -sf /usr/share/zoneinfo/$TZ /etc/localtime | |||
RUN apt-get install -y --no-install-recommends tzdata \ | |||
&& ln -sf /usr/share/zoneinfo/$TZ /etc/localtime \ | |||
&& dpkg-reconfigure --frontend noninteractive tzdata \ | |||
&& apt-get clean | |||
ENV BUILD_PREFIX=/app | |||