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