commit initial, premières applications gérées: qtcreator, git, qgit, qcachegrind, valgrind, kdiff3
This commit is contained in:
14
valgrind/Dockerfile_centos7_valgrind
Normal file
14
valgrind/Dockerfile_centos7_valgrind
Normal 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"]
|
Reference in New Issue
Block a user