mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-23 11:39:53 +00:00
a46eff0a35
Upstream CI uses ubuntu 18.04 too, so pick that version (instead of something newer). Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Reviewed-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
28 lines
576 B
Docker
28 lines
576 B
Docker
#
|
|
# Docker image to cross-compile EDK2 firmware binaries
|
|
#
|
|
FROM ubuntu:18.04
|
|
|
|
MAINTAINER Philippe Mathieu-Daudé <f4bug@amsat.org>
|
|
|
|
# Install packages required to build EDK2
|
|
RUN apt update \
|
|
&& \
|
|
\
|
|
DEBIAN_FRONTEND=noninteractive \
|
|
apt install --assume-yes --no-install-recommends \
|
|
build-essential \
|
|
ca-certificates \
|
|
dos2unix \
|
|
gcc-aarch64-linux-gnu \
|
|
gcc-arm-linux-gnueabi \
|
|
git \
|
|
iasl \
|
|
make \
|
|
nasm \
|
|
python3 \
|
|
uuid-dev \
|
|
&& \
|
|
\
|
|
rm -rf /var/lib/apt/lists/*
|