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.
1 parent 9aa7026 commit 1370188Copy full SHA for 1370188
azure-pipelines.yml
@@ -9,11 +9,13 @@ trigger:
9
pool:
10
vmImage: ubuntu-latest
11
12
-steps:
13
-- script: echo Hello, world!
14
- displayName: 'Run a one-line script'
+variables:
+ imageName: 'pipelines-javascript-docker'
15
16
-- script: |
17
- echo Add other tasks to build, test, and deploy your project.
18
- echo See https://aka.ms/yaml
19
- displayName: 'Run a multi-line script'
+steps:
+- task: Docker@2
+ displayName: Build an image
+ inputs:
+ repository: $(image)
20
+ command: build
21
+ Dockerfile: app/Dockerfile
0 commit comments