summaryrefslogtreecommitdiff
path: root/agent/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'agent/Dockerfile')
-rw-r--r--agent/Dockerfile6
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 @@
1FROM python:3.12-slim
2RUN pip install --no-cache-dir 'openai>=1.59.2,<2' 'httpx<0.28'
3WORKDIR /app
4COPY agent.py /app/agent.py
5EXPOSE 8001
6CMD ["python", "/app/agent.py"]