File size: 1,550 Bytes
aa49469
7509dd0
aa49469
7509dd0
b6827df
 
aa49469
b6827df
 
 
12e5549
7509dd0
12e5549
 
7509dd0
f7d419b
7509dd0
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
FROM ghcr.io/openclaw/openclaw:latest

USER root

RUN rm -f /etc/cron.d/*health* /etc/cron.d/*hc* /etc/cron.d/*hugging* 2>/dev/null; \
    echo "Health cron files removed"

RUN apt-get update && apt-get install -y \
    curl nginx zstd cron procps git python3 python3-pip \
    && rm -rf /var/lib/apt/lists/*

RUN curl -fsSL https://ollama.com/install.sh | sh

RUN pip3 install --no-cache-dir --break-system-packages huggingface_hub

RUN printf 'server {\n    listen 7860;\n    location /__openclaw__/ {\n        proxy_pass http://127.0.0.1:8081;\n        proxy_http_version 1.1;\n        proxy_set_header Upgrade \$http_upgrade;\n        proxy_set_header Connection "upgrade";\n        proxy_set_header Host \$host;\n    }\n    location /api/ {\n        proxy_pass http://127.0.0.1:8081;\n        proxy_http_version 1.1;\n        proxy_set_header Upgrade \$http_upgrade;\n        proxy_set_header Connection "upgrade";\n        proxy_set_header Host \$host;\n    }\n    location /v1/ {\n        proxy_pass http://127.0.0.1:8081;\n        proxy_http_version 1.1;\n        proxy_set_header Upgrade \$http_upgrade;\n        proxy_set_header Connection "upgrade";\n        proxy_set_header Host \$host;\n    }\n    location /health {\n        proxy_pass http://127.0.0.1:8081;\n        proxy_set_header Host \$host;\n    }\n    location / {\n        proxy_pass http://127.0.0.1:8080;\n        proxy_set_header Host \$host;\n    }\n}\n' > /etc/nginx/sites-available/default

WORKDIR /app
COPY . .
RUN chmod +x start.sh

EXPOSE 7860
CMD ["/app/start.sh"]