cloud-sat/docker/nocache_build_light_images.sh

13 lines
210 B
Bash
Raw Permalink Normal View History

2023-05-01 06:12:36 +00:00
#!/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 ..