commit initial, premières applications gérées: qtcreator, git, qgit, qcachegrind, valgrind, kdiff3

This commit is contained in:
Thomas Briffard
2021-06-29 10:17:23 +02:00
commit 9fad802282
32 changed files with 713 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
FROM cos7_base
ARG VALGRIND_VER=valgrind-3.17.0
RUN wget https://sourceware.org/pub/valgrind/$VALGRIND_VER.tar.bz2 && \
tar -xvf $VALGRIND_VER.tar.bz2 && \
cd $VALGRIND_VER && \
./configure && \
make -j$(nproc) && \
make install && \
cd ../ && rm -rf $VALGRIND_VER*
# Exécuter une commande au démarrage de l'image.
CMD ["/bin/bash"]