mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-12-03 10:10:32 +00:00
- this is a raw 1GB filesystem image with syslinux for booting - built with libguestfs so does not need any privileges - need not be built on GCE - there is a target that runs the image in qemu for local tests Does not yet have a script to upload the image to cloud storage or create image from it. Signed-off-by: Justin Cormack <justin.cormack@docker.com>
5 lines
168 B
Docker
5 lines
168 B
Docker
FROM debian:jessie
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
RUN apt-get update && apt-get -yq upgrade && apt-get install -yq libguestfs-tools syslinux linux-image-amd64 vim
|