feat: build + run scripts
All checks were successful
/ mirror (push) Successful in 4s

This commit is contained in:
ange 2024-12-18 03:46:27 +00:00 committed by stcb
parent 2904744fe2
commit ae001a86cb
3 changed files with 10 additions and 9 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

View File

@ -1,9 +0,0 @@
---
services:
build:
image: git.gmoker.com/icing/flutter:v0.2.0
volumes:
- ".:/app/"
command:
- 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