bsys5/Dockerfile
Bert van der Weerd 20c82e2cd1
changes
2022-02-04 12:28:20 +01:00

10 lines
362 B
Docker

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 ( dnf -y upgrade && dnf -y install mercurial python3 python3-devel ; true)
# our work happens here, on the host filesystem.
WORKDIR /work
VOLUME ["/work"]