diff --git a/content/packages/guides/connecting-a-repository-to-a-container-image.md b/content/packages/guides/connecting-a-repository-to-a-container-image.md
index 051f92283acb..826a9327af16 100644
--- a/content/packages/guides/connecting-a-repository-to-a-container-image.md
+++ b/content/packages/guides/connecting-a-repository-to-a-container-image.md
@@ -33,11 +33,11 @@ https://github.com/monalisa/hello_docker
1. In your Dockerfile, add this line, replacing `OWNER` and `REPO` with your details:
```shell
- LABEL org.opencontainers.image.source https://github.com/OWNER/REPO
+ LABEL org.opencontainers.image.source=https://github.com/OWNER/REPO
```
For example, if you're the user `monalisa` and own `my-repo`, you would add this line to your Dockerfile:
```shell
- LABEL org.opencontainers.image.source https://github.com/monalisa/my-repo
+ LABEL org.opencontainers.image.source=https://github.com/monalisa/my-repo
```
For more information, see "[LABEL](https://docs.docker.com/engine/reference/builder/#label)" in the official Docker documentation and "[Pre-defined Annotation Keys](https://github.com/opencontainers/image-spec/blob/master/annotations.md#pre-defined-annotation-keys)" in the `opencontainers/image-spec` repository.