openclaw-neo-bot / Dockerfile
bakulkrupuk2025's picture
Update Dockerfile
554da65 verified
Raw
History Blame
221 Bytes
FROM mcr.microsoft.com/playwright/python:v1.52.0-jammy
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
ENV PYTHONUNBUFFERED=1
ENV PORT=7860
CMD ["python", "server.py"]