added dependencies before cloning

This commit is contained in:
Christopher Bisset 2022-08-08 09:37:26 +10:00
parent 022b6855a8
commit 346e233ac4

View file

@ -1,12 +1,13 @@
#!/bin/sh
set -x
#clone the project
git clone ${PROJECT_URL} ${PROJECT_NAME}
# add dependencies
# jq for parsing version information
apk add --no-cache jq
# git for cloning the repository
apk add --no-cache jq git
#clone the project
git clone ${PROJECT_URL} ${PROJECT_NAME}
# install the project
cd ${PROJECT_NAME}