blob: 822953c5c7cd5d8df8077be45d9aa2fa75df490d [file] [log] [blame]
Mohammed Naser86615772024-06-01 10:02:09 -04001# SPDX-License-Identifier: Apache-2.0
vexxhost-botc2fd4282024-06-26 07:04:25 +02002# Atmosphere-Rebuild-Time: 2024-06-25T13:53:44Z
Mohammed Naserda994232024-04-13 12:34:01 -04003
Mohammed Naserd30f18d2024-04-17 01:20:43 -04004ARG RELEASE
5
Yaguang Tang0953b612024-12-13 04:14:34 +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-bot1dcb54f2025-01-03 01:26:52 -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