We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f5ceeea + 9149656 commit a6aaeecCopy full SHA for a6aaeec
articles/aks/howto-deploy-java-liberty-app.md
@@ -270,17 +270,17 @@ You can now run the `docker build` command to build the image.
270
#### [Bash](#tab/in-bash)
271
272
```bash
273
-cd $BASE_DIR/java-app
+cd $BASE_DIR/java-app/target
274
275
docker buildx build --platform linux/amd64 -t javaee-cafe:v1 --pull --file=Dockerfile .
276
```
277
278
#### [PowerShell](#tab/in-powershell)
279
280
```powershell
281
-cd $env:BASE_DIR\java-app
+cd $env:BASE_DIR\java-app\target
282
283
-docker buildx build --platform linux/amd64 -t javaee-cafe:v1 --pull --file=Dockerfile .
+docker build -t javaee-cafe:v1 --pull --file=Dockerfile .
284
285
286
---
0 commit comments