cactus183/patchbench-dev
0
1FROM python:3.11-slim2 3WORKDIR /app4 5RUN apt-get update && apt-get install -y --no-install-recommends \6 gcc \7 && rm -rf /var/lib/apt/lists/*8 9COPY requirements.txt .10RUN pip install --no-cache-dir -r requirements.txt11 12COPY . .13 14RUN pip install --no-cache-dir -e .15 16ENV PYTHONUNBUFFERED=117ENV PYTHONDONTWRITEBYTECODE=118 19EXPOSE 786020 21CMD ["uvicorn", "server.app:app", "--host", "0.0.0.0", "--port", "7860"]22 