Skip to content

Commit

Permalink
Initial commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
HazenBabcock committed Dec 11, 2016
1 parent 5d7f80f commit ea68272
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions build_distros.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/usr/bin/env python
#
# (re)-builds the distro docker images.
#
import subprocess

import image_names

for elt in image_names.distro_test:
cmd = ["docker", "build", "-t", elt[0], "./plplot/" + elt[1] + "/."]
subprocess.call(cmd)

0 comments on commit ea68272

Please sign in to comment.