File size: 163 Bytes
74417a1
6b2a103
74417a1
 
 
6b2a103
1
2
3
4
5
6
FROM python:3.9-slim
WORKDIR /app
COPY . /app
RUN pip install --no-cache-dir -r requirements.txt
RUN chmod +x /app/start-openclaw.sh
CMD ["/app/start-openclaw.sh"]