Merge "Time mismatch in /etc/localtime and /etc/timezone"

This commit is contained in:
Zuul 2025-01-02 11:01:29 +00:00 committed by Gerrit Code Review
commit aa3e06cd33
2 changed files with 9 additions and 1 deletions

View File

@ -335,7 +335,9 @@ RUN apt-get --error-on=any update \
&& locale-gen "$LANG" \
&& apt-get -y upgrade \
&& apt-get -y dist-upgrade \
&& {{ macros.install_packages(base_apt_packages | customizable('apt_packages'), True) }}
&& {{ macros.install_packages(base_apt_packages | customizable('apt_packages'), True) }} \
# NOTE: python3-pip installs dependent tzdata package and blocks mount in docker - 2091161
&& unlink /etc/localtime
{% endblock %}

View File

@ -0,0 +1,6 @@
---
fixes:
- |
Python3-pip installs the dependent package tzdata and
blocks the mount of the /etc/localtime file in docker.
`LP#2091161 <https://launchpad.net/bugs/2081149>`__