mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-04-10 23:12:43 +00:00
The gummiboot EFI stub is used for creting a EFI bootable ISO Signed-off-by: Rolf Neugebauer <rolf.neugebauer@docker.com>
17 lines
330 B
Docker
17 lines
330 B
Docker
FROM ubuntu:15.10
|
|
|
|
RUN apt-get update && \
|
|
apt-get -y upgrade && \
|
|
apt-get -y install build-essential automake pkg-config libtool gnu-efi
|
|
|
|
RUN mkdir -p /gummiboot
|
|
|
|
COPY gummiboot /gummiboot
|
|
RUN tar czvf /gummiboot.tar.gz gummiboot
|
|
|
|
WORKDIR /gummiboot
|
|
|
|
RUN ./autogen.sh && \
|
|
./configure && \
|
|
make linuxx64.efi.stub
|