blob: ba45b02408e62e242670ef2163804ee78dc8c7ef [file] [log] [blame]
Mohammed Naser86615772024-06-01 10:02:09 -04001# SPDX-License-Identifier: Apache-2.0
2# Atmosphere-Rebuild-Time: 2024-05-30T20:29:01Z
Mohammed Naser37694382024-04-02 21:11:31 -04003
Mohammed Naserd30f18d2024-04-17 01:20:43 -04004ARG RELEASE
5
6FROM registry.atmosphere.dev/library/ubuntu-cloud-archive:${RELEASE}
Mohammed Naserda994232024-04-13 12:34:01 -04007ENV PATH=/var/lib/openstack/bin:$PATH
8RUN \
9 apt-get update -qq && \
10 apt-get install -qq -y --no-install-recommends \
11 ca-certificates \
12 libpython3.10 \
13 lsb-release \
14 python3-distutils \
15 sudo && \
16 apt-get clean && \
17 rm -rf /var/lib/apt/lists/*