We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5c4692 commit 67ce5b4Copy full SHA for 67ce5b4
Dockerfile
@@ -0,0 +1,10 @@
1
+FROM python:3.9-slim
2
+
3
+WORKDIR /app
4
5
+COPY ai_agent_sdk.py .
6
+COPY requirements.txt .
7
8
+RUN pip install --no-cache-dir -r requirements.txt
9
10
+ENTRYPOINT ["python", "ai_agent_sdk.py"]
0 commit comments