test / Dockerfile
paramjitbaral's picture
Upload folder using huggingface_hub
07a8e81 verified
Raw
History Blame Contribute Delete
294 Bytes
FROM python:3.11-slim
WORKDIR /app
COPY . /app
RUN pip install --no-cache-dir --upgrade pip \
&& pip install --no-cache-dir -e .
ENV PYTHONUNBUFFERED=1
EXPOSE 7860
ENV ENABLE_WEB_INTERFACE=true
CMD ["uvicorn", "app.server.app:app", "--host", "0.0.0.0", "--port", "7860"]