blob: 3967901315e3c4171a587e11e545f30adbe685a0 [file] [log] [blame]
vexxhost-bota62d9312024-06-01 21:13:59 +02001# SPDX-License-Identifier: Apache-2.0
vexxhost-bot4a8f0912024-06-28 22:34:23 +02002# Atmosphere-Rebuild-Time: 2024-06-28T12:14:26Z
Mohammed Naserd28fbaf2024-04-08 17:15:00 -04003
Mohammed Naser19c6c8a2024-04-18 01:47:10 -04004ARG RELEASE
5
6FROM registry.atmosphere.dev/library/openstack-runtime:${RELEASE}
Mohammed Naserd28fbaf2024-04-08 17:15:00 -04007ADD --chmod=644 https://download.ceph.com/keys/release.gpg /etc/apt/trusted.gpg.d/ceph.gpg
8COPY <<EOF /etc/apt/sources.list.d/ceph.list
9deb http://download.ceph.com/debian-reef/ jammy main
10EOF
11RUN <<EOF bash -xe
12apt-get update -qq
13apt-get install -qq -y --no-install-recommends \
14 ceph-common cgroup-tools dmidecode ebtables iproute2 ipxe-qemu kmod libvirt-clients libvirt-daemon-system openssh-client openvswitch-switch ovmf pm-utils qemu-block-extra qemu-efi qemu-kvm seabios
15apt-get clean
16rm -rf /var/lib/apt/lists/*
17EOF