[Docker] Remove hardcoded America/Los_Angeles timezone, default to UTC (#18121)

This commit is contained in:
Mohammad Miadh Angkad
2026-02-03 15:22:15 +08:00
committed by GitHub
parent 6f6b9c6e42
commit 25508d11c0
2 changed files with 2 additions and 8 deletions

View File

@@ -60,11 +60,8 @@ RUN --mount=type=cache,target=/var/cache/apt,id=base-apt \
# Install system dependencies (organized by category for better caching)
RUN --mount=type=cache,target=/var/cache/apt,id=base-apt \
echo 'tzdata tzdata/Areas select America' | debconf-set-selections \
&& echo 'tzdata tzdata/Zones/America select Los_Angeles' | debconf-set-selections \
&& apt-get update && apt-get install -y --no-install-recommends \
apt-get update && apt-get install -y --no-install-recommends \
# Core system utilities
tzdata \
ca-certificates \
software-properties-common \
netcat-openbsd \
@@ -494,7 +491,6 @@ RUN --mount=type=cache,target=/var/cache/apt,id=runtime-apt \
python3.12-dev \
wget \
# Core system utilities
tzdata \
ca-certificates \
netcat-openbsd \
curl \

View File

@@ -16,9 +16,7 @@ ENV PATH="$VIRTUAL_ENV/bin:$PATH"
# install dependencies
RUN echo 'tzdata tzdata/Areas select America' | debconf-set-selections \
&& echo 'tzdata tzdata/Zones/America select Los_Angeles' | debconf-set-selections \
&& apt update -y \
RUN apt update -y \
&& apt install -y curl \
&& rm -rf /var/lib/apt/lists/* \
&& apt clean