NEXAS commited on
Commit
a7ebab9
·
verified ·
1 Parent(s): 1639b8b

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +14 -6
Dockerfile CHANGED
@@ -1,6 +1,14 @@
1
- FROM python:3.11-slim
2
- WORKDIR /app
3
- COPY requirements.txt .
4
- RUN pip install --no-cache-dir -r requirements.txt
5
- COPY . .
6
- CMD ["python", "agent.py", "start"]
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.11-slim
2
+
3
+ WORKDIR /app
4
+
5
+ COPY requirements.txt .
6
+ RUN pip install --no-cache-dir -r requirements.txt
7
+
8
+ COPY . .
9
+
10
+ # Hugging Face Spaces expects something on port 7860
11
+ EXPOSE 7860
12
+
13
+ # Start health server + your LiveKit agent
14
+ CMD ["bash", "-c", "python health.py & python agent.py start"]