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