Spaces:
Sleeping
Sleeping
File size: 758 Bytes
0ffe62a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | FROM python:3.10-slim
ENV PYTHONDONTWRITEBYTECODE=1 \
PYTHONUNBUFFERED=1 \
PIP_NO_CACHE_DIR=1 \
PIP_DISABLE_PIP_VERSION_CHECK=1 \
OMP_NUM_THREADS=8 \
HF_HOME=/data/.huggingface \
HF_HUB_DISABLE_SYMLINKS_WARNING=1 \
CAPTION_MODEL_ID=vidhi0405/Qwen_I2T \
PRELOAD_MODELS=1 \
PORT=7860
WORKDIR /app
RUN apt-get update && apt-get install -y --no-install-recommends \
libgl1 \
libglib2.0-0 \
&& rm -rf /var/lib/apt/lists/*
RUN mkdir -p /data/.huggingface && chmod -R 777 /data
COPY requirements.txt ./
RUN python -m pip install --upgrade pip && \
python -m pip install -r requirements.txt
COPY app.py ./app.py
EXPOSE 7860
VOLUME ["/data"]
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|