mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-04-05 07:54:56 +00:00
linuxkit/mkimage-iso-bios did not work on aarch64 (no syslinux) and will error. Signed-off-by: Rolf Neugebauer <rolf.neugebauer@docker.com>
17 lines
259 B
Docker
17 lines
259 B
Docker
FROM linuxkit/alpine:87a0cd10449d72f374f950004467737dbf440630
|
|
|
|
RUN \
|
|
apk update && apk upgrade && \
|
|
apk add --no-cache \
|
|
dosfstools \
|
|
libarchive-tools \
|
|
binutils \
|
|
gummiboot \
|
|
mtools \
|
|
xorriso \
|
|
&& true
|
|
|
|
COPY . .
|
|
|
|
ENTRYPOINT [ "/make-efi" ]
|