mirror of
https://github.com/cupcakearmy/master-thesis.git
synced 2024-11-16 18:10:50 +01:00
13 lines
176 B
Bash
Executable File
13 lines
176 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cd "$(dirname "${BASH_SOURCE[0]}")"
|
|
eval $(minikube docker-env --shell bash)
|
|
|
|
function build() {
|
|
docker build -t $1 ./$1
|
|
}
|
|
|
|
build "idle" & build "sidecar"
|
|
|
|
wait
|