From 57d6bbcb3a922086c4fe8ce6d9ebaf179be4b64a Mon Sep 17 00:00:00 2001 From: zhanggangyong Date: Fri, 30 Jan 2026 18:32:29 +0000 Subject: [PATCH] Initial commit: jina-reader-agent-v10 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"]