2020-01-03 12:26:25 +01:00
|
|
|
#
|
|
|
|
# Docker image to cross-compile EDK2 firmware binaries
|
|
|
|
#
|
2022-03-08 13:19:52 +01:00
|
|
|
FROM ubuntu:18.04
|
2020-01-03 12:26:25 +01:00
|
|
|
|
2021-12-29 17:06:39 +01:00
|
|
|
MAINTAINER Philippe Mathieu-Daudé <f4bug@amsat.org>
|
2020-01-03 12:26:25 +01:00
|
|
|
|
|
|
|
# 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 \
|
2022-03-08 12:56:15 +01:00
|
|
|
python3 \
|
2020-01-03 12:26:25 +01:00
|
|
|
uuid-dev \
|
|
|
|
&& \
|
|
|
|
\
|
|
|
|
rm -rf /var/lib/apt/lists/*
|