Files
dev-env/build.sh
T
2026-07-18 08:44:23 +02:00

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)
"