mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-12-07 07:34:43 +00:00
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>
17 lines
215 B
Docker
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" ]
|