diff options
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"] | ||
