mirror of
https://github.com/Polprzewodnikowy/SummerCart64.git
synced 2024-11-26 15:44:14 +01:00
11 lines
244 B
Bash
11 lines
244 B
Bash
#!/bin/bash
|
|
|
|
LIBDRAGON_DOCKER_VERSION=latest
|
|
|
|
docker \
|
|
run \
|
|
-t \
|
|
--mount type=bind,src=`realpath "$(dirname $0)"`,target="/libdragon" \
|
|
anacierdem/libdragon:$LIBDRAGON_DOCKER_VERSION \
|
|
/bin/bash -c "make clean && make all"
|