Skip to content

Commit ad26a00

Browse files
Merge pull request #228699 from pgoyal01/release-preview-azure-operator-distributed-services
correct dockerfile name
2 parents f4f1b7c + 1f7080a commit ad26a00

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/operator-nexus/quickstarts-tenant-workload-prerequisites.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ This is a paper-exercise example of an anonymous pull of an image from Azure Con
7474
It assumes that you already have an existing VM instance image in `qcow2` format and that the image is set up to boot with cloud-init. A working docker build and runtime environment is required.
7575

7676
Create a dockerfile that copies the `qcow2` image file into the container's /disk directory. Place in an expected directory with correct permissions.
77-
For example, a Dockerfile named `aods-vm-img-dockerfile`:
77+
For example, a Dockerfile named `workload-vm-img-dockerfile`:
7878

7979
```bash
8080
FROM scratch
@@ -85,7 +85,7 @@ Using the docker command, build the image and tag to a Docker registry (such as
8585
The docker command assumes the `qcow2` file is in the same directory as your Dockerfile.
8686

8787
```bash
88-
docker build -f aods-vm-img-dockerfile -t devtestacr.azurecr.io/your-favorite-image:v1 .
88+
docker build -f workload-vm-img-dockerfile -t devtestacr.azurecr.io/your-favorite-image:v1 .
8989
FROM scratch
9090
ADD --chown=107:107 your-favorite-image.qcow2 /disk/
9191
```

0 commit comments

Comments
 (0)