added vlc for local files and wesnoth as a showcase

This commit is contained in:
mbattista
2021-03-21 22:52:58 +00:00
parent b96ba47224
commit 39f5c0e7fa
8 changed files with 1712 additions and 0 deletions

View File

@ -25,11 +25,21 @@ build_chromium() {
docker build -t m1k1o/neko:chromium -f chromium/Dockerfile chromium/
}
build_wesnoth() {
docker build -t m1k1o/neko:wesnoth -f wesnoth/Dockerfile wesnoth/
}
build_vlc() {
docker build -t m1k1o/neko:vlc -f vlc/Dockerfile vlc/
}
case $1 in
client) build_client;;
serve) build_server;;
base) build_base;;
firefox) build_firefox;;
chromium) build_chromium;;
wesnoth) build_wesnoth;;
vlc) build_vlc;;
*) echo "Unknown $1";;
esac