Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BF: add cmake to installed dependencies in unstable singularity images #1857

Merged
merged 2 commits into from
May 1, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions singularity/Singularity.debian-unstable-amd64
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ From: debian:unstable
# just useful little tools
eatmydata apt-get -y install vim wget strace time ncdu gnupg curl procps netcat
eatmydata apt-get -y build-dep vowpal-wabbit
# new dependencies which didn't make it into a Debian release yet
eatmydata apt-get -y install cmake
# some external depends might have not been needed then
eatmydata apt-get -y install markdown html2text rapidjson-dev libboost-python-dev git
chmod a+rX -R /etc/apt/sources.list.d
Expand Down
2 changes: 2 additions & 0 deletions singularity/Singularity.debian-unstable-i386
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ From: i386/debian:unstable
# just useful little tools
eatmydata apt-get -y install vim wget strace time ncdu gnupg curl procps netcat
eatmydata apt-get -y build-dep vowpal-wabbit
# new dependencies which didn't make it into a Debian release yet
eatmydata apt-get -y install cmake
# some external depends might have not been needed then
eatmydata apt-get -y install markdown html2text rapidjson-dev libboost-python-dev git
chmod a+rX -R /etc/apt/sources.list.d
Expand Down
2 changes: 2 additions & 0 deletions singularity/template
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ From: ${DOCKERARCHPREFIX}debian:$DEBRELEASE
# just useful little tools
eatmydata apt-get -y install vim wget strace time ncdu gnupg curl procps netcat
eatmydata apt-get -y build-dep vowpal-wabbit
# new dependencies which didn't make it into a Debian release yet
eatmydata apt-get -y install cmake
# some external depends might have not been needed then
eatmydata apt-get -y install markdown html2text rapidjson-dev libboost-python-dev git
chmod a+rX -R /etc/apt/sources.list.d
Expand Down