mirror of
https://github.com/aljazceru/kata-containers.git
synced 2025-12-19 23:34:23 +01:00
git-subtree-dir: tools/packaging git-subtree-mainline:f818b46a41git-subtree-split:1f22d72d5dSigned-off-by: Peng Tao <bergwolf@hyper.sh>
59 lines
1.8 KiB
Docker
59 lines
1.8 KiB
Docker
from ubuntu:18.04
|
|
|
|
ARG QEMU_VIRTIOFS_REPO
|
|
# commit/tag/branch
|
|
ARG QEMU_VIRTIOFS_TAG
|
|
ARG QEMU_TARBALL
|
|
ARG PREFIX
|
|
|
|
WORKDIR /root/qemu-virtiofs
|
|
RUN apt-get update && apt-get upgrade -y
|
|
RUN apt-get --no-install-recommends install -y \
|
|
apt-utils \
|
|
autoconf \
|
|
automake \
|
|
bc \
|
|
bison \
|
|
ca-certificates \
|
|
cpio \
|
|
flex \
|
|
gawk \
|
|
libaudit-dev \
|
|
libcap-dev \
|
|
libcap-ng-dev \
|
|
libdw-dev \
|
|
libelf-dev \
|
|
libglib2.0-0 \
|
|
libglib2.0-dev \
|
|
libglib2.0-dev git \
|
|
libltdl-dev \
|
|
libpixman-1-dev \
|
|
libpmem-dev \
|
|
libseccomp-dev \
|
|
libtool \
|
|
patch \
|
|
pkg-config \
|
|
pkg-config \
|
|
python \
|
|
python-dev \
|
|
rsync \
|
|
seccomp \
|
|
libseccomp2 \
|
|
zlib1g-dev
|
|
|
|
RUN cd .. && git clone "${QEMU_VIRTIOFS_REPO}" qemu-virtiofs
|
|
RUN git checkout "${QEMU_VIRTIOFS_TAG}"
|
|
ADD qemu/patches/virtiofsd/0001-add-time-to-seccomp.patch /root/0001-add-time-to-seccomp.patch
|
|
ADD qemu/patches/virtiofsd/0002-libvhost-user-Fix-the-VHOST_USER_PROTOCOL_F_SLAVE_SE.patch /root/0002-libvhost-user-Fix-the-VHOST_USER_PROTOCOL_F_SLAVE_SE.patch
|
|
RUN patch -p1 < /root/0001-add-time-to-seccomp.patch
|
|
RUN patch -p1 < /root/0002-libvhost-user-Fix-the-VHOST_USER_PROTOCOL_F_SLAVE_SE.patch
|
|
ADD scripts/configure-hypervisor.sh /root/configure-hypervisor.sh
|
|
RUN PREFIX="${PREFIX}" /root/configure-hypervisor.sh -s kata-qemu | sed -e 's|--enable-rbd||g' -e 's|--disable-seccomp||g' | xargs ./configure \
|
|
--with-pkgversion=kata-static
|
|
RUN make -j$(nproc)
|
|
RUN make -j$(nproc) virtiofsd
|
|
RUN make install DESTDIR=/tmp/qemu-virtiofs-static
|
|
RUN mv /tmp/qemu-virtiofs-static/"${PREFIX}"/bin/qemu-system-x86_64 /tmp/qemu-virtiofs-static/"${PREFIX}"/bin/qemu-virtiofs-system-x86_64
|
|
RUN chmod +x virtiofsd && mv virtiofsd /tmp/qemu-virtiofs-static/opt/kata/bin/
|
|
RUN cd /tmp/qemu-virtiofs-static && tar -czvf "${QEMU_TARBALL}" *
|