7 changed files with 24 additions and 22 deletions
@ -1,5 +1,16 @@
|
||||
#!/bin/bash |
||||
|
||||
set -e |
||||
|
||||
rm -rf pyrocko-test-data |
||||
wget -r http://data.pyrocko.org/testing/pyrocko/ -nv --no-parent -nH --cut-dirs=2 -P pyrocko-test-data |
||||
|
||||
docker build nest -t pyrocko-nest |
||||
|
||||
rm -rf fat-nest/pyrocko-test-data |
||||
cp -r pyrocko-test-data fat-nest |
||||
docker build fat-nest -t pyrocko-fat-nest |
||||
|
||||
docker build docs -t pyrocko-docs |
||||
docker build util -t pyrocko-util |
||||
docker build pyrocko -t pyrocko |
||||
|
@ -0,0 +1,2 @@
|
||||
FROM pyrocko-nest |
||||
COPY pyrocko-test-data /pyrocko-test-data |
Loading…
Reference in new issue