blob: b13e13caa5fcc606b63495358dd88512559a9e02 [file] [log] [blame]
#!/usr/bin/env bash
# Build and push all docker containers
DEVICES=('cpu' 'gpu')
LANGUAGES=('python' 'julia' 'r-lang' 'scala' 'perl')
for DEV in "${DEVICES[@]}"; do
for LANG in "${LANGUAGES[@]}"; do
./tool.sh build ${LANG} ${DEV}
./tool.sh push ${LANG} ${DEV}
done
done