cynnix69 commited on
Commit
58851a2
·
verified ·
1 Parent(s): 72f5871

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +14 -0
Dockerfile ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.9-slim
2
+
3
+ # Install dependencies and git
4
+ RUN apt-get update && apt-get install -y git
5
+
6
+ # Install AutoGen Studio using the recommended approach
7
+ RUN pip install --upgrade pip && \
8
+ pip install autogenstudio
9
+
10
+ # Expose the port
11
+ EXPOSE 8000
12
+
13
+ # Run AutoGen Studio
14
+ CMD ["python", "-m", "autogenstudio"]