From 3b9c6c69476fa29bc3c719a431564579a48e8b17 Mon Sep 17 00:00:00 2001 From: Roger Meier Date: Sat, 8 Mar 2025 07:42:01 +0100 Subject: [PATCH] [CI/Build] refactor: set timezone of container to UTC (#12888) Signed-off-by: Roger Meier --- Dockerfile | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 128600b0f5e6d..ece22ed3df8cf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,9 +15,7 @@ ARG TARGETPLATFORM ENV DEBIAN_FRONTEND=noninteractive # Install minimal dependencies and uv -RUN echo 'tzdata tzdata/Areas select America' | debconf-set-selections \ - && echo 'tzdata tzdata/Zones/America select Los_Angeles' | debconf-set-selections \ - && apt-get update -y \ +RUN apt-get update -y \ && apt-get install -y ccache git curl wget sudo \ && curl -LsSf https://astral.sh/uv/install.sh | sh @@ -174,9 +172,7 @@ RUN PYTHON_VERSION_STR=$(echo ${PYTHON_VERSION} | sed 's/\.//g') && \ echo "export PYTHON_VERSION_STR=${PYTHON_VERSION_STR}" >> /etc/environment # Install minimal dependencies and uv -RUN echo 'tzdata tzdata/Areas select America' | debconf-set-selections \ - && echo 'tzdata tzdata/Zones/America select Los_Angeles' | debconf-set-selections \ - && apt-get update -y \ +RUN apt-get update -y \ && apt-get install -y ccache git curl wget sudo vim \ && apt-get install -y ffmpeg libsm6 libxext6 libgl1 libibverbs-dev \ && curl -LsSf https://astral.sh/uv/install.sh | sh