extpython/images.sh

8 lines
163 B
Bash
Raw Normal View History

2019-05-31 14:26:56 -07:00
#!/bin/bash -ex
2019-05-31 15:17:58 -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