File tree Expand file tree Collapse file tree 2 files changed +36
-1
lines changed
Expand file tree Collapse file tree 2 files changed +36
-1
lines changed Original file line number Diff line number Diff line change 1+ name : Docker Build
2+
3+ on :
4+ push :
5+ branches : [ main ]
6+ pull_request :
7+ branches : [ main ]
8+
9+ jobs :
10+ build :
11+ runs-on : ubuntu-latest
12+ steps :
13+ - name : Checkout code
14+ uses : actions/checkout@v4
15+
16+ - name : Set up Docker Buildx
17+ uses : docker/setup-buildx-action@v3
18+
19+ - name : Build main application image
20+ uses : docker/build-push-action@v5
21+ with :
22+ context : .
23+ file : ./make/Dockerfile
24+ push : false
25+ load : true
26+ tags : nexent:latest
27+
28+ - name : Build data process image
29+ uses : docker/build-push-action@v5
30+ with :
31+ context : .
32+ file : ./make/dataprocess/Dockerfile
33+ push : false
34+ load : true
35+ tags : nexent-data-process:latest
Original file line number Diff line number Diff line change @@ -18,4 +18,4 @@ PyJWT>=2.8.0
1818supabase >= 2.15.0
1919pydantic [email ]>= 2.11.1
2020httpx [socks ]>= 0.28.1
21- arxiv_mcp_server > =0.2.10
21+ arxiv_mcp_server ~ =0.1.0
You can’t perform that action at this time.
0 commit comments