From 3789326a7cf7df8fe769549adcb67284dbc16bd1 Mon Sep 17 00:00:00 2001 From: Alexander Aksenov Date: Tue, 09 Aug 2022 07:50:15 +0000 Subject: [PATCH] Added timezone configuration(UTC) --- --- a/.docker/Dockerfile-parachain-upgrade +++ b/.docker/Dockerfile-parachain-upgrade @@ -7,6 +7,8 @@ ENV RUST_TOOLCHAIN $RUST_TOOLCHAIN ENV CARGO_HOME="/cargo-home" ENV PATH="/cargo-home/bin:$PATH" +ENV TZ=UTC +RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone RUN curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain none @@ -72,7 +74,6 @@ FROM ubuntu:20.04 RUN apt-get -y update && \ - apt-get -y upgrade && \ apt-get -y install curl git && \ curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash && \ export NVM_DIR="$HOME/.nvm" && \ -- gitstuff