vexxhost-bot | 6e0e436 | 2024-06-01 21:24:08 +0200 | [diff] [blame] | 1 | # SPDX-License-Identifier: Apache-2.0 |
vexxhost-bot | 65e04a2 | 2024-06-26 15:46:55 +0200 | [diff] [blame] | 2 | # Atmosphere-Rebuild-Time: 2024-06-25T22:49:25Z |
Mohammed Naser | da99423 | 2024-04-13 12:34:01 -0400 | [diff] [blame] | 3 | |
Mohammed Naser | d30f18d | 2024-04-17 01:20:43 -0400 | [diff] [blame] | 4 | ARG RELEASE |
| 5 | |
| 6 | FROM registry.atmosphere.dev/library/openstack-runtime:${RELEASE} |
Mohammed Naser | da99423 | 2024-04-13 12:34:01 -0400 | [diff] [blame] | 7 | ADD --chmod=644 https://download.ceph.com/keys/release.gpg /etc/apt/trusted.gpg.d/ceph.gpg |
| 8 | COPY <<EOF /etc/apt/sources.list.d/ceph.list |
| 9 | deb http://download.ceph.com/debian-reef/ jammy main |
| 10 | EOF |
| 11 | RUN <<EOF bash -xe |
| 12 | apt-get update -qq |
| 13 | apt-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 |
| 15 | apt-get clean |
| 16 | rm -rf /var/lib/apt/lists/* |
| 17 | EOF |