Docker build scripts #17

Open
ange wants to merge 2 commits from issue-16 into dev
3 changed files with 10 additions and 9 deletions
Showing only changes of commit ae001a86cb - Show all commits

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