The point of this is to separate dockerfiles and build them on top of each other wherever possible. Then we can build them interdependently with makefiles!
8 lines
87 B
Bash
8 lines
87 B
Bash
#!/bin/bash
|
|
|
|
[ -x /input.sh ] && /input.sh
|
|
|
|
/bin/bash
|
|
|
|
[ -x /output.sh ] && /output.sh
|