vexxhost-bot | a62d931 | 2024-06-01 21:13:59 +0200 | [diff] [blame] | 1 | # SPDX-License-Identifier: Apache-2.0 |
Mohammed Naser | e4ec15d | 2025-01-14 21:15:03 -0500 | [diff] [blame] | 2 | # Atmosphere-Rebuild-Time: 2025-01-15T02:05:46Z |
Mohammed Naser | d28fbaf | 2024-04-08 17:15:00 -0400 | [diff] [blame] | 3 | |
Mohammed Naser | aa212e6 | 2025-01-15 16:49:44 -0500 | [diff] [blame] | 4 | ARG REGISTRY |
Mohammed Naser | 19c6c8a | 2024-04-18 01:47:10 -0400 | [diff] [blame] | 5 | ARG RELEASE |
| 6 | |
Mohammed Naser | aa212e6 | 2025-01-15 16:49:44 -0500 | [diff] [blame] | 7 | FROM ${REGISTRY}/openstack-runtime:${RELEASE} |
Mohammed Naser | d28fbaf | 2024-04-08 17:15:00 -0400 | [diff] [blame] | 8 | ADD --chmod=644 https://download.ceph.com/keys/release.gpg /etc/apt/trusted.gpg.d/ceph.gpg |
| 9 | COPY <<EOF /etc/apt/sources.list.d/ceph.list |
| 10 | deb http://download.ceph.com/debian-reef/ jammy main |
| 11 | EOF |
| 12 | RUN <<EOF bash -xe |
| 13 | apt-get update -qq |
| 14 | apt-get install -qq -y --no-install-recommends \ |
vexxhost-bot | bcbe53a | 2025-01-03 11:51:50 -0500 | [diff] [blame] | 15 | 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 Naser | d28fbaf | 2024-04-08 17:15:00 -0400 | [diff] [blame] | 16 | apt-get clean |
| 17 | rm -rf /var/lib/apt/lists/* |
| 18 | EOF |