From 58dfde04cdf63b8403e25b58326c3bd36f9a1664 Mon Sep 17 00:00:00 2001 From: Bert van der Weerd Date: Fri, 4 Feb 2022 12:29:54 +0100 Subject: [PATCH] changes --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 49a34e4..2b98839 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ ARG distro FROM $distro # dependencies needed to run ./mach bootstrap -RUN ( apt-get -y update && apt-get -y upgrade && apt-get -y install mercurial python3 python3-dev python3-pip libclang-dev ; true) +RUN ( apt-get -y update && apt-get -y upgrade && apt-get -y install mercurial python3 python3-dev python3-pip ; true) RUN ( dnf -y upgrade && dnf -y install mercurial python3 python3-devel ; true) # our work happens here, on the host filesystem.