Skip to content

Commit

Permalink
Merge pull request #118 from ericfont/feature/arm
Browse files Browse the repository at this point in the history
allow create pre-built wheezy arm docker image w/ dependencies
  • Loading branch information
probonopd committed Mar 17, 2016
2 parents bb25042 + c08dc11 commit 4db2174
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ fi

if [ -e /usr/bin/apt-get ] ; then
$SUDO apt-get update
$SUDO apt-get -y install libfuse-dev libglib2.0-dev cmake git libc6-dev binutils fuse
$SUDO apt-get -y install libfuse-dev libglib2.0-dev cmake git libc6-dev binutils fuse python

fi

Expand Down Expand Up @@ -54,6 +54,11 @@ if [ -e /usr/bin/pacman ] ; then
done
fi

if [ "$1" == "--fetch-dependencies-only" ] ; then
echo "Fetched dependencies. Exiting now."
exit 0
fi

cd "${HERE}"
cmake .
make clean
Expand Down

0 comments on commit 4db2174

Please sign in to comment.