This commit is contained in:
Bert van der Weerd 2022-02-04 12:29:54 +01:00
parent 20c82e2cd1
commit 58dfde04cd
No known key found for this signature in database
GPG Key ID: 4CFABB96ADE0F5B1
1 changed files with 1 additions and 1 deletions

View File

@ -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.