90f285fd83
The philmd@redhat.com email address will stop working on 2022-01-01, change it to my personal email address. Update .mailmap in case anyone wants to send me an email because of some past commit I authored. Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com> Message-Id: <20211231000759.707519-1-philmd@redhat.com>
28 lines
575 B
Docker
28 lines
575 B
Docker
#
|
|
# Docker image to cross-compile EDK2 firmware binaries
|
|
#
|
|
FROM ubuntu:16.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 \
|
|
python \
|
|
uuid-dev \
|
|
&& \
|
|
\
|
|
rm -rf /var/lib/apt/lists/*
|