Files
openstack-helm-images/libvirt/Dockerfile.ubuntu_bionic
Dmitrii Kabanov 4179761efe [libvirt] Update Ceph to 14.2.9
The PS updates Ceph packages in libvirt image to 14.2.9 version.

Change-Id: I99ba8f37574b39eb986acc4dd1d01922f393e0fa
2020-06-22 22:25:31 +00:00

27 lines
718 B
Docker

ARG FROM=docker.io/ubuntu:bionic
FROM ${FROM}
LABEL maintainer="pete.birley@att.com"
ARG UBUNTU_RELEASE=bionic
ARG CEPH_RELEASE=mimic
ARG CEPH_RELEASE_TAG=""
ARG PROJECT=nova
ARG UID=42424
ARG GID=42424
ARG CEPH_REPO=http://download.ceph.com/debian-${CEPH_RELEASE}/
ARG CEPH_KEY=http://download.ceph.com/keys/release.asc
ADD ${CEPH_KEY} /etc/apt/ceph-${CEPH_RELEASE}.key
COPY ./ubuntu-install-libvirt.sh /tmp/ubuntu-install-libvirt.sh
RUN set -ex ;\
export DEBIAN_FRONTEND=noninteractive ;\
apt-get update ;\
apt-get upgrade -y ;\
apt-get install --no-install-recommends -y \
apt-transport-https \
ca-certificates \
gnupg ;\
/tmp/ubuntu-install-libvirt.sh ;\
rm -rf /tmp/*