tdesktop/Telegram/build/prepare/linux.sh

14 lines
265 B
Bash
Raw Normal View History

2023-11-28 18:42:17 +00:00
#!/bin/bash
set -e
FullExecPath=$PWD
pushd `dirname $0` > /dev/null
FullScriptPath=`pwd`
popd > /dev/null
cd $FullScriptPath/../docker/centos_env
poetry install
poetry run gen_dockerfile | DOCKER_BUILDKIT=1 docker build -t tdesktop:centos_env -
cd $FullExecPath