diff options
Diffstat (limited to 'content/2021-12-02-toying-with-virtio/Containerfile')
-rw-r--r-- | content/2021-12-02-toying-with-virtio/Containerfile | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/content/2021-12-02-toying-with-virtio/Containerfile b/content/2021-12-02-toying-with-virtio/Containerfile new file mode 100644 index 0000000..c2ec735 --- /dev/null +++ b/content/2021-12-02-toying-with-virtio/Containerfile @@ -0,0 +1,34 @@ +FROM ubuntu:20.04 +MAINTAINER Johannes Stoelp <johannes.stoelp@gmail.com> + +RUN apt update \ + && DEBIAN_FRONTEND=noninteractive \ + apt install \ + --yes \ + --no-install-recommends \ + # Download & unpack. + wget \ + ca-certificates \ + xz-utils \ + # Build tools & deps (kernel). + make \ + bc \ + gcc g++ \ + flex bison \ + libelf-dev \ + libncurses-dev \ + # Build tools & deps (initrd). + cpio \ + # Run & debug. + qemu-system-x86 \ + # Convenience. + sudo \ + telnet \ + ripgrep \ + fd-find \ + neovim \ + && rm -rf /var/lib/apt/lists/* \ + && apt-get clean + +# Change default working dir. +WORKDIR /develop |