blob: a025102b1c8299b6a27ca7225ec03f7790715534 [file] [log] [blame]
Mohammed Naser86615772024-06-01 10:02:09 -04001# SPDX-License-Identifier: Apache-2.0
Mohammed Naserd4d95912025-01-14 21:15:03 -05002# Atmosphere-Rebuild-Time: 2025-01-15T02:05:46Z
Mohammed Naserda994232024-04-13 12:34:01 -04003
Mohammed Naserbcd53112025-01-15 16:49:44 -05004ARG REGISTRY
Mohammed Naserd30f18d2024-04-17 01:20:43 -04005ARG RELEASE
6
Mohammed Naserbcd53112025-01-15 16:49:44 -05007FROM ${REGISTRY}/openstack-runtime:${RELEASE}
Mohammed Naserda994232024-04-13 12:34:01 -04008ADD --chmod=644 https://download.ceph.com/keys/release.gpg /etc/apt/trusted.gpg.d/ceph.gpg
9COPY <<EOF /etc/apt/sources.list.d/ceph.list
10deb http://download.ceph.com/debian-reef/ jammy main
11EOF
12RUN <<EOF bash -xe
13apt-get update -qq
14apt-get install -qq -y --no-install-recommends \
Dong Ma427215f2025-01-01 10:34:40 +080015 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 -040016apt-get clean
17rm -rf /var/lib/apt/lists/*
18EOF