Skip to content

Commit ea68272

Browse files
committed
Initial commit.
1 parent 5d7f80f commit ea68272

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

build_distros.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/usr/bin/env python
2+
#
3+
# (re)-builds the distro docker images.
4+
#
5+
import subprocess
6+
7+
import image_names
8+
9+
for elt in image_names.distro_test:
10+
cmd = ["docker", "build", "-t", elt[0], "./plplot/" + elt[1] + "/."]
11+
subprocess.call(cmd)

0 commit comments

Comments
 (0)