blob: d2ed54b4774f6d1c19dd49ca2825959c19bb2db0 [file] [log] [blame]
Mohammed Nasercc6868b2025-01-18 15:49:44 -05001# SPDX-FileCopyrightText: © 2025 VEXXHOST, Inc.
2# SPDX-License-Identifier: GPL-3.0-or-later
Mohammed Naser735efe22024-06-26 23:46:25 -04003# Atmosphere-Rebuild-Time: 2024-06-26T17:38:39Z
Mohammed Naser37694382024-04-02 21:11:31 -04004
Mohammed Nasercc6868b2025-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/*