1
0
mirror of https://github.com/newnius/YAO-Dockerfiles.git synced 2025-06-06 15:51:56 +00:00
YAO-Dockerfiles/tensorflow/1.14-gpu/bootstrap.sh

20 lines
382 B
Bash
Raw Normal View History

2019-12-24 07:12:59 +00:00
#!/bin/bash
if ! [[ -z "${repo}" ]]; then
if [[ -z "${branch}" ]]; then
git clone $repo /workspace
else
git clone -b $branch $repo /workspace
fi
fi
if [ -d /workspace ]; then
cd /workspace
fi
sleep infinity
# use eval because commands likes `key=value command` would cause file not found error when using $@, but this eval will ruin current environment
eval $@