File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,8 @@ az acr login --name $ACR_NAME
3333
3434 ``` bash
3535az acr login --name < containerregname>
36- docker build --no-cache -f api/ApiApp.Dockerfile -t < acrloginserver> /< repo> :< tagname> .
36+ cd src/api
37+ docker build --no-cache -f ApiApp.Dockerfile -t < acrloginserver> /< repo> :< tagname> .
3738docker push < acrloginserver> /< repo> :< tagname>
3839 ```
3940
@@ -54,7 +55,8 @@ If you want to update image tag and image manually you can follow below steps:
5455
5556``` bash
5657az acr login --name < containerregname>
57- docker build --no-cache -f App/WebApp.Dockerfile -t < acrloginserver> /< repo> :< tagname> .
58+ cd src/App
59+ docker build --no-cache -f WebApp.Dockerfile -t < acrloginserver> /< repo> :< tagname> .
5860docker push < acrloginserver> /< repo> :< tagname>
5961```
6062
You can’t perform that action at this time.
0 commit comments