PYAE1994 commited on
Commit
59fc3d1
·
verified ·
1 Parent(s): 5cd7be9

Add Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +13 -0
Dockerfile ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.12-slim
2
+
3
+ ENV PYTHONUNBUFFERED=1
4
+ ENV PORT=7860
5
+
6
+ WORKDIR /app
7
+
8
+ COPY requirements.txt .
9
+ RUN pip install --no-cache-dir -r requirements.txt
10
+
11
+ EXPOSE 7860
12
+
13
+ CMD ["agent-server", "--host", "0.0.0.0", "--port", "7860"]