4 lines
175 B
Bash
4 lines
175 B
Bash
|
|
# This script builds the application WITHOUT using dependencies on the system!
|
||
|
|
# THE POWER OF DOCKER!
|
||
|
|
clear
|
||
|
|
docker run --rm -t -v "$PWD:/src:ro,z" -v "$PWD/build:/app:Z" tasky
|