From 5c3ee5b4d31963f592c6f3f5b898cc3c937ab8a4 Mon Sep 17 00:00:00 2001 From: Kevin Carter Date: Wed, 18 Jun 2025 15:20:08 -0500 Subject: [PATCH] chore: add curl to the base glance image Signed-off-by: Kevin Carter --- ContainerFiles/glance | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ContainerFiles/glance b/ContainerFiles/glance index a7ac3a5..baa2c82 100644 --- a/ContainerFiles/glance +++ b/ContainerFiles/glance @@ -61,7 +61,7 @@ LABEL org.opencontainers.image.description="OpenStack Service (glance) built for COPY --from=dependency_build /var/lib/openstack /var/lib/openstack RUN export DEBIAN_FRONTEND=noninteractive \ && apt-get update && apt-get upgrade -y \ - && apt-get install --no-install-recommends -y libxml2 \ + && apt-get install --no-install-recommends -y libxml2 curl \ && apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false \ && apt-get clean -y \ && rm -rf /var/lib/apt/lists/* \