cloud-sat/docker/nocache_build_light_images.sh
2023-05-01 06:12:36 +00:00

13 lines
210 B
Bash
Executable File

#!/bin/sh
cd common
docker build --no-cache -t satcomp-light:common .
cd ..
cd leader
docker build --no-cache -t satcomp-light:leader .
cd ..
cd worker
docker build --no-cache -t satcomp-light:worker .
cd ..