Skip to content

Commit 4b2ce6c

Browse files
committed
added a workflow for docker build test
1 parent 97eef6a commit 4b2ce6c

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/docker_test.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Docker LLM RAG Build CI
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
- dev
8+
pull_request:
9+
branches:
10+
- main
11+
- dev
12+
13+
jobs:
14+
docker-build:
15+
runs-on: ubuntu-latest
16+
17+
steps:
18+
- uses: actions/checkout@v2
19+
20+
- name: Set up Docker Buildx
21+
uses: docker/setup-buildx-action@v1
22+
23+
- name: Build Docker Image
24+
run: |
25+
docker build -t llm_rag_app:latest -f docker/Dockerfile .

0 commit comments

Comments
 (0)