sc3dev/build-all-containers.sh

22 lines
611 B
Bash
Raw Normal View History

2023-10-19 01:17:43 +00:00
#!/usr/bin/env bash
set -eu
2023-10-19 01:17:43 +00:00
######################################################################
# @author : kyle (kyle@imap.cc)
# @file : build-all-containers.sh
# @created : Wednesday Oct 18, 2023 18:09:07 PDT
#
# @description : build the containers in this project and push them.
######################################################################
# most important is the main build
./build-container.sh Containerfile sc/dev:main
for container_file in Containerfile.*
do
flavor="${container_file#Containerfile.}"
./build-container.sh Containerfile.${flavor} sc/dev:${flavor}
2023-10-19 01:17:43 +00:00
done