Initial commit

This commit is contained in:
Josh
2018-12-09 00:15:56 -05:00
commit aad3c9bb54
125 changed files with 18177 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
#!/bin/sh
dir=$(dirname $0)
for d in $dir/docker/*
do
bn=$(basename $d)
cp $d/Dockerfile .
docker build -t "oppai-ng:$bn" .
rm Dockerfile
done