mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-01-30 11:21:58 +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>
16 lines
191 B
Docker
16 lines
191 B
Docker
FROM alpine:3.5
|
|
|
|
RUN \
|
|
apk update && apk upgrade && \
|
|
apk add --no-cache \
|
|
libarchive-tools \
|
|
binutils \
|
|
gummiboot \
|
|
mtools \
|
|
xorriso \
|
|
&& true
|
|
|
|
COPY . .
|
|
|
|
CMD [ "/make-efi" ]
|