From dc4f08f3d44743ad6c653479c20c5d5ee1cf1931 Mon Sep 17 00:00:00 2001 From: Mark Hamzy Date: Fri, 5 Jun 2026 15:32:02 -0500 Subject: [PATCH] Add tzdata to openstack image When running the openstack CLI, I see the following errors: ``` Could not load 'flavor_create': [Errno 2] No such file or directory: '/usr/share/zoneinfo/zone.tab' ``` So add the tzdata rpm during the container build. --- images/openstack/Dockerfile.ci | 1 + 1 file changed, 1 insertion(+) diff --git a/images/openstack/Dockerfile.ci b/images/openstack/Dockerfile.ci index 43b6a1acde7..2811d367c54 100644 --- a/images/openstack/Dockerfile.ci +++ b/images/openstack/Dockerfile.ci @@ -43,6 +43,7 @@ RUN yum update -y && \ python3-netaddr \ python3-openstackclient \ python3-pip \ + tzdata \ unzip \ util-linux && \ yum clean all && rm -rf /var/cache/yum/* && \