We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b82db8 commit 962c66dCopy full SHA for 962c66d
1 file changed
documents/ACRBuildAndPushGuide.md
@@ -33,7 +33,8 @@ az acr login --name $ACR_NAME
33
34
```bash
35
az acr login --name <containerregname>
36
-docker build --no-cache -f api/ApiApp.Dockerfile -t <acrloginserver>/<repo>:<tagname> .
+cd src/api
37
+docker build --no-cache -f ApiApp.Dockerfile -t <acrloginserver>/<repo>:<tagname> .
38
docker push <acrloginserver>/<repo>:<tagname>
39
```
40
@@ -54,7 +55,8 @@ If you want to update image tag and image manually you can follow below steps:
54
55
56
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> .
60
61
62
0 commit comments