linux.sh 265 B

12345678910111213
  1. #!/bin/bash
  2. set -e
  3. FullExecPath=$PWD
  4. pushd `dirname $0` > /dev/null
  5. FullScriptPath=`pwd`
  6. popd > /dev/null
  7. cd $FullScriptPath/../docker/centos_env
  8. poetry install
  9. poetry run gen_dockerfile | DOCKER_BUILDKIT=1 docker build -t tdesktop:centos_env -
  10. cd $FullExecPath