8 lines
150 B
Bash
8 lines
150 B
Bash
|
set -e
|
||
|
FullExecPath=$PWD
|
||
|
pushd `dirname $0` > /dev/null
|
||
|
FullScriptPath=`pwd`
|
||
|
popd > /dev/null
|
||
|
|
||
|
docker build -t tdesktop:centos_env "$FullScriptPath/"
|