blob: 2e786330ca4de869baddf4dcf566c95fec23cf31 [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 Naserd4d95912025-01-14 21:15:03 -05003# Atmosphere-Rebuild-Time: 2025-01-15T02:05:46Z
Mohammed Naserda994232024-04-13 12:34:01 -04004
Mohammed Naser564caa82025-01-18 15:49:44 -05005FROM openstack-runtime
Mohammed Naserda994232024-04-13 12:34:01 -04006ADD --chmod=644 https://download.ceph.com/keys/release.gpg /etc/apt/trusted.gpg.d/ceph.gpg
7COPY <<EOF /etc/apt/sources.list.d/ceph.list
8deb http://download.ceph.com/debian-reef/ jammy main
9EOF
10RUN <<EOF bash -xe
11apt-get update -qq
12apt-get install -qq -y --no-install-recommends \
Dong Ma427215f2025-01-01 10:34:40 +080013 ceph-common cgroup-tools dmidecode ebtables iproute2 ipxe-qemu kmod libtpms0 libvirt-clients libvirt-daemon-system openssh-client openvswitch-switch ovmf pm-utils qemu-block-extra qemu-efi qemu-kvm seabios swtpm swtpm-tools
Mohammed Naserda994232024-04-13 12:34:01 -040014apt-get clean
15rm -rf /var/lib/apt/lists/*
16EOF