mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-04-05 02:49:27 +00:00
- do not require specific filenames for input - change EFI build to use `docker run` Signed-off-by: Justin Cormack <justin.cormack@docker.com>
14 lines
165 B
Docker
14 lines
165 B
Docker
FROM alpine:3.5
|
|
|
|
RUN \
|
|
apk update && apk upgrade && \
|
|
apk add --no-cache \
|
|
libarchive-tools \
|
|
cdrkit \
|
|
syslinux \
|
|
&& true
|
|
|
|
COPY . .
|
|
|
|
CMD [ "/make-iso" ]
|