blob: 35acbc1f599f9e31544d88ebbd813f7c8a07e297 [file] [log] [blame]
Mohammed Naser564caa82025-01-18 15:49:44 -05001# SPDX-FileCopyrightText: © 2025 VEXXHOST, Inc.
2# SPDX-License-Identifier: GPL-3.0-or-later
Mohammed Nasere786d962024-06-26 01:08:34 -04003# Atmosphere-Rebuild-Time: 2024-06-25T22:49:25Z
Mohammed Naser37694382024-04-02 21:11:31 -04004
Mohammed Naser564caa82025-01-18 15:49:44 -05005FROM ubuntu-cloud-archive
Mohammed Naserda994232024-04-13 12:34:01 -04006ENV PATH=/var/lib/openstack/bin:$PATH
7RUN \
8 apt-get update -qq && \
9 apt-get install -qq -y --no-install-recommends \
10 ca-certificates \
11 libpython3.10 \
12 lsb-release \
13 python3-distutils \
14 sudo && \
15 apt-get clean && \
16 rm -rf /var/lib/apt/lists/*