Agnuxo commited on
Commit
7276788
·
verified ·
1 Parent(s): ae19ec0

Upload Dockerfile with huggingface_hub

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -6
Dockerfile CHANGED
@@ -1,14 +1,13 @@
1
  FROM python:3.11-slim
2
 
3
  WORKDIR /app
4
- COPY requirements.txt .
5
- RUN pip install --no-cache-dir -r requirements.txt
6
 
7
  COPY . .
8
 
9
  ENV STATE_DIR=/tmp/openclaw-state
10
- ENV PORT=10000
11
-
12
- EXPOSE 10000
13
 
14
- CMD ["python", "server.py"]
 
1
  FROM python:3.11-slim
2
 
3
  WORKDIR /app
4
+
5
+ RUN pip install --no-cache-dir gradio==4.44.1 flask
6
 
7
  COPY . .
8
 
9
  ENV STATE_DIR=/tmp/openclaw-state
10
+ ENV PORT=7860
11
+ EXPOSE 7860
 
12
 
13
+ CMD ["python", "app.py"]