Skip to content

Commit f074c00

Browse files
committed
🔨 Add auto build verification workflow
1 parent dee2bf8 commit f074c00

File tree

2 files changed

+36
-1
lines changed

2 files changed

+36
-1
lines changed
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
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

‎backend/requirements.txt‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ PyJWT>=2.8.0
1818
supabase>=2.15.0
1919
pydantic[email]>=2.11.1
2020
httpx[socks]>=0.28.1
21-
arxiv_mcp_server>=0.2.10
21+
arxiv_mcp_server~=0.1.0

0 commit comments

Comments
 (0)