Correcting Dockerfile path for manual e2e tests

Signed-off-by: Björn Svensson <bjorn.a.svensson@est.tech>
This commit is contained in:
Bjorn Svensson 2021-04-16 15:57:42 +02:00 committed by Tomofumi Hayashi
parent a52680b3bf
commit 9e3ad2ea1e

View File

@ -10,7 +10,7 @@ running="$(docker inspect -f '{{.State.Running}}' "${reg_name}" 2>/dev/null || t
if [ "${running}" != 'true' ]; then
# run registry and push the multus image
docker run -d --restart=always -p "${reg_port}:5000" --name "${reg_name}" registry:2
docker build -t localhost:5000/multus:e2e ..
docker build -t localhost:5000/multus:e2e -f ../deployments/Dockerfile ..
docker push localhost:5000/multus:e2e
fi
reg_host="${reg_name}"