Files
linuxkit/alpine/base/alpine-bios/Dockerfile
Justin Cormack af676ac5e1 Standalone make iso image, rather than build+run
Simpler to have an image that takes the kernel and initrd as input,
rather than building them into the image.

The rest need converting.

Signed-off-by: Justin Cormack <justin.cormack@docker.com>
2016-09-22 13:12:23 +01:00

17 lines
215 B
Docker

FROM alpine:3.4
RUN \
apk update && apk upgrade && \
apk add --no-cache \
cdrkit \
syslinux \
&& true
WORKDIR /tmp/iso
COPY isolinux.cfg ./isolinux/
COPY make-iso /usr/bin
CMD [ "/usr/bin/make-iso" ]