mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-10-29 01:54:06 +00:00
14 lines
172 B
Docker
14 lines
172 B
Docker
FROM alpine:3.5
|
|
|
|
RUN \
|
|
apk update && apk upgrade && \
|
|
apk add --no-cache \
|
|
libarchive-tools \
|
|
cdrkit \
|
|
syslinux \
|
|
&& true
|
|
|
|
COPY . .
|
|
|
|
ENTRYPOINT [ "/make-iso" ]
|