seige / Dockerfile
BART-ender's picture
Upload folder using huggingface_hub
3aeaf3d verified
raw
history blame contribute delete
234 Bytes
FROM python:3.11-slim
WORKDIR /app
COPY . /app
RUN pip install --no-cache-dir -e .
ENV SEIGE_TARGET_BACKEND=mock
ENV ENABLE_WEB_INTERFACE=true
CMD ["python", "-m", "uvicorn", "server.app:app", "--host", "0.0.0.0", "--port", "8000"]