mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-04-26 19:14:02 +02:00
13 lines
265 B
Bash
Executable file
13 lines
265 B
Bash
Executable file
#!/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
|