From 8a306f7e5d8219e83502a48759b1298f56a73837 Mon Sep 17 00:00:00 2001 From: zhanggangyong Date: Fri, 30 Jan 2026 17:51:19 +0000 Subject: [PATCH] Initial commit: jina-reader-agent-v3 with 1 tools - Dockerfile --- Dockerfile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..bb705df --- /dev/null +++ b/Dockerfile @@ -0,0 +1,13 @@ +FROM python:3.11-slim + +WORKDIR /app + +COPY requirements.txt . +RUN pip install --no-cache-dir -r requirements.txt + +COPY . . + +ENV PORT=8000 +EXPOSE 8000 + +CMD ["python", "run_api_server.py"]