Files
linuxkit/tools/mkimage-iso-efi/Dockerfile
Justin Cormack e35c4c9b37 Add output types for BIOS and EFI ISOs
Note that the EFI ISO is not yet automatically sized, and the
kernel command lines are currently hard coded in the builders.

Signed-off-by: Justin Cormack <justin.cormack@docker.com>
2017-03-03 18:44:47 -08:00

16 lines
191 B
Docker

FROM alpine:3.5
RUN \
apk update && apk upgrade && \
apk add --no-cache \
libarchive-tools \
binutils \
gummiboot \
mtools \
xorriso \
&& true
COPY . .
CMD [ "/make-efi" ]