dhuser's picture
Initial LREC LLM-as-Annotator app
a918698
raw
history blame contribute delete
285 Bytes
# HuggingFace Spaces — Docker SDK
FROM python:3.11-slim
WORKDIR /home/user/app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . /home/user/app/
ENV PYTHONUNBUFFERED=1
EXPOSE 7860
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]