Skip to content

Commit d0df872

Browse files
Set up CI with Azure Pipelines
[skip ci]
1 parent 3dcbb46 commit d0df872

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

azure-pipelines.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Starter pipeline
2+
# Start with a minimal pipeline that you can customize to build and deploy your code.
3+
# Add steps that build, run tests, deploy, and more:
4+
# https://aka.ms/yaml
5+
6+
trigger:
7+
- main
8+
9+
pool:
10+
vmImage: 'ubuntu-1604' # set to windows-latest or another Windows vmImage for Windows builds
11+
12+
variables:
13+
imageName: 'pipelines-javascript-docker'
14+
15+
steps:
16+
- task: Docker@2
17+
displayName: Build an image
18+
inputs:
19+
repository: $(imageName)
20+
command: build
21+
Dockerfile: app/Dockerfile

0 commit comments

Comments
 (0)