OpenCLAW-Agent / Dockerfile
Agnuxo's picture
Upload Dockerfile with huggingface_hub
710c4a8 verified
raw
history blame contribute delete
275 Bytes
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
ENV STATE_DIR=/tmp/openclaw-state
ENV SEED_STATE_DIR=/tmp/seed-state
ENV SEED_DATA_DIR=/tmp/seed-data
ENV PORT=7860
EXPOSE 7860
CMD ["python", "app.py"]