Removed unnecessary git dep in docker image

This commit is contained in:
shrukan
2022-12-26 17:36:50 -08:00
parent b243ad4e55
commit d3c0220100
4 changed files with 7 additions and 7 deletions

View File

@ -1,7 +1,7 @@
FROM gcc:12
# Install build tools
RUN apt-get update && apt-get install -y python3 ninja-build python3-pip gdb graphviz git
RUN apt-get update && apt-get install -y python3 python3-pip ninja-build gdb graphviz
RUN pip install meson gcovr
# The version of doxy in the Debian repos is too old to support concepts, so we grab the latest release and manually install
RUN wget --progress=bar:force:noscroll https://www.doxygen.nl/files/doxygen-1.9.5.linux.bin.tar.gz && \