ashucode/metaxhuggingfacehackathon
0
1FROM python:3.11-slim2 3RUN apt-get update && apt-get install -y --no-install-recommends \4 build-essential \5 && rm -rf /var/lib/apt/lists/*6 7WORKDIR /app8 9COPY requirements.txt .10RUN pip install --no-cache-dir -r requirements.txt11 12COPY supermart_env.py .13COPY app.py .14COPY inference.py .15COPY openenv.yaml .16 17EXPOSE 786018 19CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860", "--workers", "1"]