35 lines
583 B
Bash
Executable File
35 lines
583 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
echo "
|
|
Building base container
|
|
"
|
|
./build-helper.sh git.janishutz.com/registry/dev-container-base base
|
|
|
|
echo "
|
|
Building npm container
|
|
"
|
|
./build-helper.sh git.janishutz.com/registry/dev-container-npm npm
|
|
|
|
echo "
|
|
Building Vue container
|
|
"
|
|
./build-helper.sh git.janishutz.com/registry/dev-container-vue vue
|
|
|
|
echo "
|
|
Building Python container
|
|
"
|
|
./build-helper.sh git.janishutz.com/registry/dev-container-python python
|
|
#
|
|
# echo "
|
|
# Building php container
|
|
# "
|
|
# ./build-helper.sh git.janishutz.com/registry/dev-container-php php
|
|
|
|
echo "
|
|
|
|
==> Build successful at $(date)
|
|
|
|
"
|