Skip to content

Commit c4cadb9

Browse files
committed
created github action for building docker images
Signed-off-by: Anton Mitsengendler <anton.mitsengendler@outlook.com>
1 parent a69671a commit c4cadb9

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/docker-image.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Docker Image CI
2+
3+
on:
4+
push:
5+
branches: [ "master" ]
6+
7+
jobs:
8+
9+
build:
10+
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v4
15+
16+
- name: Build Server Docker Image
17+
run: docker build src --file src/PodLoad.Server/Dockerfile --tag podload-server:$(date +%s)
18+
19+
- name: Build Client Docker Image
20+
run: docker build src --file src/PodLoad.Client/Dockerfile --tag podload-client:$(date +%s)

0 commit comments

Comments
 (0)