diff options
| author | Your Name <you@example.com> | 2026-04-26 21:02:47 +0800 |
|---|---|---|
| committer | Your Name <you@example.com> | 2026-04-26 21:02:47 +0800 |
| commit | d3e770254de0bb301815ca87257c8b1a357d06c4 (patch) | |
| tree | 358c814be2a06b9e2009905f14938243286b8d82 /agent/Dockerfile | |
Diffstat (limited to 'agent/Dockerfile')
| -rw-r--r-- | agent/Dockerfile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/agent/Dockerfile b/agent/Dockerfile new file mode 100644 index 0000000..509c3b6 --- /dev/null +++ b/agent/Dockerfile | |||
| @@ -0,0 +1,6 @@ | |||
| 1 | FROM python:3.12-slim | ||
| 2 | RUN pip install --no-cache-dir 'openai>=1.59.2,<2' 'httpx<0.28' | ||
| 3 | WORKDIR /app | ||
| 4 | COPY agent.py /app/agent.py | ||
| 5 | EXPOSE 8001 | ||
| 6 | CMD ["python", "/app/agent.py"] | ||
