mimo-orchestrator / Dockerfile
linustws's picture
Upload Dockerfile with huggingface_hub
33cd739 verified
raw
history blame contribute delete
463 Bytes
FROM python:3.11-slim@sha256:a3ab0b966bc4e91546a033e22093cb840908979487a9fc0e6e38295747e49ac0
WORKDIR /app
RUN apt-get update && apt-get install -y --no-install-recommends \
wget curl gnupg \
&& rm -rf /var/lib/apt/lists/*
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt \
&& python -m playwright install --with-deps chromium
COPY app.py .
EXPOSE 8080
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8080"]