Compare commits

...

2 Commits

Author SHA1 Message Date
759953b053
feat: build + run scripts
All checks were successful
/ mirror (push) Successful in 4s
2024-12-18 03:47:48 +00:00
44eef35ce2
Add docker build apk
All checks were successful
/ mirror (push) Successful in 4s
2024-12-17 04:24:51 +00:00
2 changed files with 10 additions and 0 deletions

5
dialer/build.sh Executable file
View File

@ -0,0 +1,5 @@
#!/bin/bash -e
IMG=git.gmoker.com/icing/flutter:main
docker run --rm -v "$PWD:/app/" "$IMG" build apk

5
dialer/run.sh Executable file
View File

@ -0,0 +1,5 @@
#!/bin/bash -e
IMG=git.gmoker.com/icing/flutter:main
docker run --rm -p 5037:5037 -v "$PWD:/app/" "$IMG" run