Skip to content

Commit d99b7b6

Browse files
authored
Create docker-image.yml
1 parent c17ccd4 commit d99b7b6

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/docker-image.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Docker Image CI
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
11+
build:
12+
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- uses: actions/checkout@v3
17+
- name: Build the Gateway Docker image
18+
run: docker build . --file gateway/Tasky.Gateway/Dockerfile --tag gateway:dev
19+
- name: Build the IdentityServer Docker image
20+
run: docker build . --file apps/Tasky.IdentityServer/Dockerfile --tag identityserver:dev
21+
- name: Build the Administration Docker image
22+
run: docker build . --file services/administration/host/Tasky.AdministrationService.HttpApi.Host/Dockerfile --tag administration:dev
23+
- name: Build the IdentityService Docker image
24+
run: docker build . --file services/identity/host/Tasky.IdentityService.HttpApi.Host/Dockerfile --tag identityservice:dev
25+
- name: Build the SaaS Docker image
26+
run: docker build . --file services/saas/host/Tasky.SaaSService.HttpApi.Host/Dockerfile --tag saas:dev

0 commit comments

Comments
 (0)