blob: 0a7be4bb55c166e8d59daaf90c5c10bc90404feb [file] [log] [blame]
vexxhost-bot6e0e4362024-06-01 21:24:08 +02001# SPDX-License-Identifier: Apache-2.0
vexxhost-bot65e04a22024-06-26 15:46:55 +02002# Atmosphere-Rebuild-Time: 2024-06-25T22:49:25Z
Mohammed Naser37694382024-04-02 21:11:31 -04003
Mohammed Naser91491332025-01-15 16:49:44 -05004ARG REGISTRY
Mohammed Naserd30f18d2024-04-17 01:20:43 -04005ARG RELEASE
6
Mohammed Naser91491332025-01-15 16:49:44 -05007FROM ${REGISTRY}/ubuntu-cloud-archive:${RELEASE}
Mohammed Naserda994232024-04-13 12:34:01 -04008ENV PATH=/var/lib/openstack/bin:$PATH
9RUN \
10 apt-get update -qq && \
11 apt-get install -qq -y --no-install-recommends \
12 ca-certificates \
13 libpython3.10 \
14 lsb-release \
15 python3-distutils \
16 sudo && \
17 apt-get clean && \
18 rm -rf /var/lib/apt/lists/*