Spaces:
Sleeping
Sleeping
File size: 362 Bytes
8572720 e02b53c 8572720 e02b53c 8572720 e02b53c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY app.py .
# The API key will be injected securely from Hugging Face Secrets
ENV TOGETHER_API_KEY="2aa48b9b987fa3f745dd1862a2063f5fce1ee508c3de1a01c3ec6969d47434e6"
EXPOSE 7860
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|