mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-12-03 14:57:03 +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/*
|