mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-06-23 15:33:55 +02:00
10 lines
226 B
Bash
Executable file
10 lines
226 B
Bash
Executable file
set -e
|
|
FullExecPath=$PWD
|
|
pushd `dirname $0` > /dev/null
|
|
FullScriptPath=`pwd`
|
|
popd > /dev/null
|
|
|
|
|
|
cd $FullScriptPath/../docker/centos_env
|
|
poetry run gen_dockerfile | docker buildx build -t tdesktop:centos_env -
|
|
cd $FullExecPath
|