Skip to content

Commit 0e2ce00

Browse files
authored
Create docker-build.yml
1 parent edce441 commit 0e2ce00

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

.github/workflows/docker-build.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Docker Image CI
2+
3+
on:
4+
push:
5+
branches: [ "master" ]
6+
pull_request:
7+
branches: [ "master" ]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
- name: Build the Docker image
15+
run: docker build . --file Dockerfile --tag cricket

0 commit comments

Comments
 (0)