mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-04-05 11:44:20 +00:00
16 lines
198 B
Docker
16 lines
198 B
Docker
FROM alpine:3.5
|
|
|
|
RUN \
|
|
apk update && apk upgrade && \
|
|
apk add --no-cache \
|
|
libarchive-tools \
|
|
binutils \
|
|
gummiboot \
|
|
mtools \
|
|
xorriso \
|
|
&& true
|
|
|
|
COPY . .
|
|
|
|
ENTRYPOINT [ "/make-efi" ]
|