Skip to content

Instantly share code, notes, and snippets.

@Wenzel
Created July 13, 2022 14:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Wenzel/c49e7cf2c5bdbc4a767002b59cd4d772 to your computer and use it in GitHub Desktop.
Save Wenzel/c49e7cf2c5bdbc4a767002b59cd4d772 to your computer and use it in GitHub Desktop.
xen make debball fails on ubuntu 20.04
FROM ubuntu:20.04
ENV DEBIAN_FRONTEND=noninterative
RUN apt-get update && apt-get install -y \
git \
build-essential \
iasl \
python3-dev \
uuid-dev \
ncurses-dev \
pkg-config \
libglib2.0-dev \
libpixman-1-dev \
libyajl-dev \
libsystemd-dev \
flex \
bison \
ninja-build
RUN git clone https://github.com/xen-project/xen
WORKDIR xen
RUN ./configure --enable-systemd
RUN make -j $(nproc) debball
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment