nero7151/SPOON-AI
1
1FROM python:3.102 3ENV HF_HOME=/tmp/huggingface4 5WORKDIR /app6 7COPY . /app8 9RUN pip install --no-cache-dir -r requirements.txt10 11CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]12 1FROM python:3.102 3ENV HF_HOME=/tmp/huggingface4 5WORKDIR /app6 7COPY . /app8 9RUN pip install --no-cache-dir -r requirements.txt10 11CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]12