blob: d7cabbe98e14a5cff434953b8044f472899246b1 [file] [log] [blame]
vexxhost-bot6e0e4362024-06-01 21:24:08 +02001# SPDX-License-Identifier: Apache-2.0
vexxhost-bot65e04a22024-06-26 15:46:55 +02002# Atmosphere-Rebuild-Time: 2024-06-25T22:49:25Z
Mohammed Naserda994232024-04-13 12:34:01 -04003
Mohammed Naserd30f18d2024-04-17 01:20:43 -04004ARG RELEASE
5
Yaguang Tangba6760e2024-12-13 12:59:40 +08006FROM harbor.atmosphere.dev/library/openstack-runtime:${RELEASE}
Mohammed Naserda994232024-04-13 12:34:01 -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 \
vexxhost-botf43526c2025-01-03 11:52:01 -050014 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 -040015apt-get clean
16rm -rf /var/lib/apt/lists/*
17EOF