From 5ee09c88546c3880bd299a127bc96d0b53fd511d Mon Sep 17 00:00:00 2001 From: Luca Vanni <50046345+l-vanni@users.noreply.github.com> Date: Wed, 25 Dec 2024 08:32:48 +0100 Subject: [PATCH] Removed the python-future package from the Dockerfile (#568) --- build-container/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-container/Dockerfile b/build-container/Dockerfile index 1560b4c..0412e87 100644 --- a/build-container/Dockerfile +++ b/build-container/Dockerfile @@ -1,7 +1,7 @@ FROM archlinux:base-devel -# The following is from https://github.com/archzfs/archzfs-ci/blob/master/worker/Dockerfile -RUN pacman -Syu --noconfirm --needed python-pipx python-twisted python-future git wget systemd-sysvcompat openresolv vi +# The following is adapted from https://github.com/archzfs/archzfs-ci/blob/master/worker/Dockerfile +RUN pacman -Syu --noconfirm --needed python-pipx python-twisted git wget systemd-sysvcompat openresolv vi # add buildbot user and give passwordless sudo access (needed for archzfs build scripts) RUN groupadd -r buildbot && \