Unverified Commit 3b9c6c69 authored by Roger Meier's avatar Roger Meier Committed by GitHub
Browse files

[CI/Build] refactor: set timezone of container to UTC (#12888)


Signed-off-by: default avatarRoger Meier <r.meier@siemens.com>
parent 4aae6676
...@@ -15,9 +15,7 @@ ARG TARGETPLATFORM ...@@ -15,9 +15,7 @@ ARG TARGETPLATFORM
ENV DEBIAN_FRONTEND=noninteractive ENV DEBIAN_FRONTEND=noninteractive
# Install minimal dependencies and uv # Install minimal dependencies and uv
RUN echo 'tzdata tzdata/Areas select America' | debconf-set-selections \ RUN apt-get update -y \
&& echo 'tzdata tzdata/Zones/America select Los_Angeles' | debconf-set-selections \
&& apt-get update -y \
&& apt-get install -y ccache git curl wget sudo \ && apt-get install -y ccache git curl wget sudo \
&& curl -LsSf https://astral.sh/uv/install.sh | sh && curl -LsSf https://astral.sh/uv/install.sh | sh
...@@ -174,9 +172,7 @@ RUN PYTHON_VERSION_STR=$(echo ${PYTHON_VERSION} | sed 's/\.//g') && \ ...@@ -174,9 +172,7 @@ RUN PYTHON_VERSION_STR=$(echo ${PYTHON_VERSION} | sed 's/\.//g') && \
echo "export PYTHON_VERSION_STR=${PYTHON_VERSION_STR}" >> /etc/environment echo "export PYTHON_VERSION_STR=${PYTHON_VERSION_STR}" >> /etc/environment
# Install minimal dependencies and uv # Install minimal dependencies and uv
RUN echo 'tzdata tzdata/Areas select America' | debconf-set-selections \ RUN apt-get update -y \
&& echo 'tzdata tzdata/Zones/America select Los_Angeles' | debconf-set-selections \
&& apt-get update -y \
&& apt-get install -y ccache git curl wget sudo vim \ && apt-get install -y ccache git curl wget sudo vim \
&& apt-get install -y ffmpeg libsm6 libxext6 libgl1 libibverbs-dev \ && apt-get install -y ffmpeg libsm6 libxext6 libgl1 libibverbs-dev \
&& curl -LsSf https://astral.sh/uv/install.sh | sh && curl -LsSf https://astral.sh/uv/install.sh | sh
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment