Skip to content

Commit cb41c82

Browse files
committed
feat: Add CI Job to build Dockerfile
1 parent 0cf8ab4 commit cb41c82

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/ci.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,17 @@ jobs:
2929

3030
- name: Build project
3131
run: npm run build
32+
33+
docker-build:
34+
runs-on: ubuntu-latest
35+
timeout-minutes: 15
36+
37+
steps:
38+
- name: Checkout repository
39+
uses: actions/checkout@v4
40+
41+
- name: Set up Docker Buildx
42+
uses: docker/setup-buildx-action@v3
43+
44+
- name: Build Docker image
45+
run: docker build -t sovd-web-ui:test -f Dockerfile .

0 commit comments

Comments
 (0)