mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-04-11 11:15:54 +00:00
10 lines
153 B
Docker
10 lines
153 B
Docker
FROM alpine:3.4
|
|
|
|
RUN \
|
|
apk update && apk upgrade && \
|
|
apk add \
|
|
qemu-img \
|
|
qemu-system-arm \
|
|
qemu-system-x86_64 \
|
|
&& rm -rf /var/cache/apk/*
|