mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-01-14 21:20:24 +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>
14 lines
218 B
Docker
14 lines
218 B
Docker
FROM linuxkit/alpine:87a0cd10449d72f374f950004467737dbf440630
|
|
|
|
RUN \
|
|
apk update && apk upgrade && \
|
|
apk add --no-cache \
|
|
libarchive-tools \
|
|
cdrkit \
|
|
syslinux \
|
|
&& true
|
|
|
|
COPY . .
|
|
|
|
ENTRYPOINT [ "/make-iso" ]
|