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
parent 44eef35ce2
commit 759953b053
Signed by: ange
GPG Key ID: 9E0C4157BB7BEB1D
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