blob: 0a7be4bb55c166e8d59daaf90c5c10bc90404feb [file] [log] [blame]
# SPDX-License-Identifier: Apache-2.0
# Atmosphere-Rebuild-Time: 2024-06-25T22:49:25Z
ARG REGISTRY
ARG RELEASE
FROM ${REGISTRY}/ubuntu-cloud-archive:${RELEASE}
ENV PATH=/var/lib/openstack/bin:$PATH
RUN \
apt-get update -qq && \
apt-get install -qq -y --no-install-recommends \
ca-certificates \
libpython3.10 \
lsb-release \
python3-distutils \
sudo && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*