Files
SimControl/buildDocker.sh
2023-10-29 16:54:57 +01:00

9 lines
240 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}
# buildah push ${TAG}
docker build --pull --rm -f "Dockerfile" -t ${TAG} "."
docker image push ${TAG}