File size: 370 Bytes
63c75d5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
FROM python:3.12-slim

WORKDIR /app

COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt

COPY . .

ENV OPENCLAW_AGENTS_ROOT=/openclaw/agents
ENV OPENCLAW_STATE_DIR=/data/session-amplifier
ENV MAX_TOOLRESULT_CHARS=2000
ENV SPOOLER_BATCH_SIZE=100
ENV REVIEW_CONFIDENCE_THRESHOLD=0.5
ENV API_PORT=8477

EXPOSE 8477

ENTRYPOINT ["python", "main.py"]