ContainerImage.GitSparseClone/init/entrypoint.sh
Danny Bessems 5bdbfe00b8
All checks were successful
continuous-integration/drone/push Build is passing
Update 'init/entrypoint.sh'
2020-02-17 15:16:26 +00:00

17 lines
386 B
Bash

#!/bin/sh
# Configure git for corporate proxy
git config --global http.proxyAuthMethod basic
# Clone git-repo
git init
git config core.sparsecheckout true
echo $SPARSE_CHECKOUT >> .git/info/sparse-checkout
git remote add -f origin $REMOTE_REPO
git pull origin $REMOTE_BRANCH
# Create target folder and move files
mkdir -p $TARGET_DIR
mv `echo $SPARSE_CHECKOUT` $TARGET_DIR
exec "$@"