Commit c011f52f authored by Hordur Freyr Yngvason's avatar Hordur Freyr Yngvason Committed by Achilleas Pipinellis

Fix docker code block formatting in ADO docs

parent e02d5a1c
...@@ -752,14 +752,14 @@ In projects: ...@@ -752,14 +752,14 @@ In projects:
1. Activate the experimental `Dockerfile` syntax by adding the following 1. Activate the experimental `Dockerfile` syntax by adding the following
to the top of the file: to the top of the file:
```Dockerfile ```docker
# syntax = docker/dockerfile:experimental # syntax = docker/dockerfile:experimental
``` ```
1. To make secrets available in any `RUN $COMMAND` in the `Dockerfile`, mount 1. To make secrets available in any `RUN $COMMAND` in the `Dockerfile`, mount
the secret file and source it prior to running `$COMMAND`: the secret file and source it prior to running `$COMMAND`:
```Dockerfile ```docker
RUN --mount=type=secret,id=auto-devops-build-secrets . /run/secrets/auto-devops-build-secrets && $COMMAND RUN --mount=type=secret,id=auto-devops-build-secrets . /run/secrets/auto-devops-build-secrets && $COMMAND
``` ```
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment