]> xenbits.xensource.com Git - people/royger/xen.git/commitdiff
automation: add a Fedora image
authorWei Liu <wei.liu2@citrix.com>
Thu, 4 Apr 2019 11:23:00 +0000 (12:23 +0100)
committerWei Liu <wei.liu2@citrix.com>
Thu, 4 Apr 2019 13:20:13 +0000 (14:20 +0100)
Use the latest and greatest.

Signed-off-by: Wei Liu <wei.liu2@citrix.com>
Acked-by: Doug Goldstein <cardoe@cardoe.com>
automation/build/fedora/latest.dockerfile [new file with mode: 0644]

diff --git a/automation/build/fedora/latest.dockerfile b/automation/build/fedora/latest.dockerfile
new file mode 100644 (file)
index 0000000..e0db7af
--- /dev/null
@@ -0,0 +1,43 @@
+FROM fedora:latest
+LABEL maintainer.name="The Xen Project" \
+      maintainer.email="xen-devel@lists.xenproject.org"
+
+RUN mkdir /build
+WORKDIR /build
+
+# install Xen depends
+RUN dnf -y install \
+        clang \
+        gcc \
+        gcc-c++ \
+        ncurses-devel \
+        zlib-devel \
+        openssl-devel \
+        python-devel \
+        libuuid-devel \
+        pkgconfig \
+        gettext \
+        flex \
+        bison \
+        libaio-devel \
+        glib2-devel \
+        yajl-devel \
+        pixman-devel \
+        glibc-devel \
+        glibc-devel.i686 \
+        make \
+        binutils \
+        git \
+        wget \
+        acpica-tools \
+        python-markdown \
+        patch \
+        checkpolicy \
+        dev86 \
+        xz-devel \
+        bzip2 \
+        nasm \
+        ocaml \
+        ocaml-findlib \
+    && dnf clean all && \
+    rm -rf /var/cache/dnf