2021-09-21 14:11:24 +00:00
|
|
|
set -e
|
|
|
|
FullExecPath=$PWD
|
|
|
|
pushd `dirname $0` > /dev/null
|
|
|
|
FullScriptPath=`pwd`
|
|
|
|
popd > /dev/null
|
|
|
|
|
2022-07-24 13:02:23 +00:00
|
|
|
|
|
|
|
cd $FullScriptPath/../docker/centos_env
|
2022-11-28 12:04:26 +00:00
|
|
|
poetry run gen_dockerfile | DOCKER_BUILDKIT=1 docker build -t tdesktop:centos_env -
|
2022-07-24 13:02:23 +00:00
|
|
|
cd $FullExecPath
|