Files
linuxkit/base/mkimage-iso-bios/Dockerfile
Justin Cormack f8e0a3d61c Move base images directory to top level
These are standalone, better to have them at the top.

Signed-off-by: Justin Cormack <justin.cormack@docker.com>
2017-01-24 18:55:23 +00: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" ]