From 65cf620d4be0247968ccd96e8821a3f259e5b61d Mon Sep 17 00:00:00 2001 From: Christian Kellner Date: Wed, 7 Apr 2021 13:30:45 +0000 Subject: [PATCH] devcontainer: install additional packages Install more more tools and utilities that help with development and testing of osbuild inside the dev container. --- .devcontainer/Dockerfile | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 7c792443..8565fc6b 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1,20 +1,34 @@ -FROM fedora +FROM fedora:latest RUN dnf install -y \ + findutils \ fish \ + fpaste \ git \ + hostname \ jq \ + libguestfs-tools libguestfs \ + libosinfo \ make \ qemu-img \ + qemu-system-x86 \ osbuild \ osbuild-ostree \ + podman \ pylint \ python3-autopep8 \ python3-devel \ python3-docutils \ + python3-enchant \ python3-iniparse \ + python3-mako \ python3-jsonschema \ python3-pip \ + python3-pycodestyle \ python3-pylint \ python3-pytest \ rpm-build \ - selinux-policy-devel + rpmlint \ + selinux-policy-devel \ + skopeo \ + the_silver_searcher \ + tree