extpython/images.sh

8 lines
160 B
Bash
Raw Normal View History

2019-05-31 14:26:56 -07:00
#!/bin/bash -ex
2019-05-31 22:26:51 -07:00
RELEASES="trusty xenial bionic disco"
2019-05-31 14:26:56 -07:00
for release in $RELEASES ; do
docker build -t extbuilder-${release} -f Dockerfile.${release} .
done