Files
SimControl/buildDocker.sh
2023-11-02 18:05:56 +01:00

9 lines
245 B
Bash
Executable File

cd build/
make -j8
cd ..
TAG="kmaster.ti.unibw-hamburg.de:30808/simcontrol:latest"
sudo buildah bud --pull -f "Dockerfile" -t ${TAG}
sudo buildah push ${TAG}
# docker build --pull --rm -f "Dockerfile" -t ${TAG} "."
# docker image push ${TAG}