openclaw-llm / Dockerfile
trytax's picture
Bootstrap OpenClaw LLM API skeleton
f6d152e verified
raw
history blame contribute delete
359 Bytes
FROM python:3.11-slim
RUN useradd -m -u 1000 user
USER user
ENV HOME=/home/user \
PATH=/home/user/.local/bin:$PATH
WORKDIR $HOME/app
COPY --chown=user requirements.txt ./requirements.txt
RUN pip install --no-cache-dir --upgrade -r requirements.txt
COPY --chown=user main.py ./main.py
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]