From 4b46a8631bb1634a001468d9ae407b8892901c86 Mon Sep 17 00:00:00 2001 From: Justin Cormack Date: Fri, 8 Jan 2016 16:09:52 +0000 Subject: [PATCH] switch qemu Dockerfile to using alpine Signed-off-by: Justin Cormack --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9222cb6d1..fb9baac98 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,9 @@ -FROM debian:unstable +FROM alpine:3.3 COPY alpine/initrd.img . COPY alpine/kernel/vmlinuz64 . -RUN apt-get update && apt-get -y install qemu +RUN apk update && apk add qemu-system-x86_64 RUN gzip -9 initrd.img