support-env / Dockerfile
SwapnilPatil28's picture
Upload folder using huggingface_hub
6792e60 verified
raw
history blame contribute delete
222 Bytes
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
ENV ENABLE_WEB_INTERFACE=true
CMD ["uvicorn", "server.app:app", "--host", "0.0.0.0", "--port", "8000"]