forked from github.com/eufy_robovac
7 lines
183 B
Bash
Executable File
7 lines
183 B
Bash
Executable File
#!/bin/bash
|
|
|
|
|
|
NAME="compile"
|
|
|
|
docker buildx build . -t $NAME
|
|
docker run -v $PWD:/opt/compile --rm -w "/opt/compile" $NAME bash -c "pipenv install;pipenv run pyinstaller -F src/vac.py" |