commit initial, premières applications gérées: qtcreator, git, qgit, qcachegrind, valgrind, kdiff3
This commit is contained in:
13
git/Dockerfile_centos7_git
Normal file
13
git/Dockerfile_centos7_git
Normal file
@@ -0,0 +1,13 @@
|
||||
FROM cos7_base
|
||||
|
||||
ARG GIT_VER=2.32.0
|
||||
|
||||
RUN yum install -y curl-devel expat-devel gettext-devel openssl-devel zlib-devel perl-CPAN perl-devel && \
|
||||
wget https://github.com/git/git/archive/refs/tags/v$GIT_VER.tar.gz && \
|
||||
tar -xvf v$GIT_VER.tar.gz && \
|
||||
cd git-$GIT_VER && \
|
||||
make configure && ./configure --prefix=/usr/local && \
|
||||
make -j$(nproc) && make install
|
||||
|
||||
# Exécuter une commande au démarrage de l'image.
|
||||
CMD ["/bin/bash"]
|
9
git/git.desktop
Normal file
9
git/git.desktop
Normal file
@@ -0,0 +1,9 @@
|
||||
[Desktop Entry]
|
||||
Name=git
|
||||
Type=Application
|
||||
Exec=git
|
||||
Icon=git
|
||||
Comment=analysis tools
|
||||
Categories=Development
|
||||
StartupWMClass=git
|
||||
Terminal=false
|
BIN
git/git.png
Normal file
BIN
git/git.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 36 KiB |
7
git/git_pre_step.sh
Executable file
7
git/git_pre_step.sh
Executable file
@@ -0,0 +1,7 @@
|
||||
#!/bin/bash
|
||||
fichierIcon=/build/git.png
|
||||
fichierDesktop=/build/git.desktop
|
||||
|
||||
AUTRES_OPTIONS="-i $fichierIcon -d $fichierDesktop"
|
||||
|
||||
|
Reference in New Issue
Block a user