mirror of
https://github.com/stucki/docker-lineageos
synced 2025-01-09 17:39:47 -05:00
13 lines
214 B
Bash
Executable File
13 lines
214 B
Bash
Executable File
#!/bin/sh
|
|
|
|
cd $(dirname $0)
|
|
|
|
SOURCE=$(pwd)/android
|
|
|
|
# Create a shared folder which will be used as working directory.
|
|
test -d $SOURCE || mkdir $SOURCE
|
|
|
|
docker build --no-cache --rm -t stucki/cyanogenmod .
|
|
|
|
exit $?
|