Agnuxo commited on
Commit
710c4a8
·
verified ·
1 Parent(s): 0efaf7d

Upload Dockerfile with huggingface_hub

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -5
Dockerfile CHANGED
@@ -3,12 +3,12 @@ FROM python:3.11-slim
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"]
 
3
  WORKDIR /app
4
  COPY requirements.txt .
5
  RUN pip install --no-cache-dir -r requirements.txt
 
6
  COPY . .
7
 
8
  ENV STATE_DIR=/tmp/openclaw-state
9
+ ENV SEED_STATE_DIR=/tmp/seed-state
10
+ ENV SEED_DATA_DIR=/tmp/seed-data
11
+ ENV PORT=7860
12
+ EXPOSE 7860
13
 
14
+ CMD ["python", "app.py"]