From 5b3a414aa57e2f36d61112ad8f88b3ee0e86917b Mon Sep 17 00:00:00 2001 From: Johannes Stoelp Date: Sun, 23 Mar 2025 00:19:16 +0100 Subject: virtio: add podman support --- .../2021-12-02-toying-with-virtio/Containerfile | 34 ++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 content/2021-12-02-toying-with-virtio/Containerfile (limited to 'content/2021-12-02-toying-with-virtio/Containerfile') 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 + +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 -- cgit v1.2.3