Files
dev-env/build.sh
T

46 lines
851 B
Bash
Executable File

#!/bin/sh
set -e
echo "
Building base container
"
./build-helper.sh git.janishutz.com/registry/dev-container-base base
cp ~/projects/system/dotfiles/linters/eslint.config.mjs ./npm/ || true
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 C container
"
./build-helper.sh git.janishutz.com/registry/dev-container-c c
echo "
Building rust container
"
./build-helper.sh git.janishutz.com/registry/dev-container-rust rust
#
# echo "
# Building php container
# "
# ./build-helper.sh git.janishutz.com/registry/dev-container-php php
echo "
==> Build successful at $(date)
"