Spaces:
Running
Running
File size: 896 Bytes
061439f | 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 33 34 | FROM python:3.11-slim
WORKDIR /app
RUN apt-get update && apt-get install -y --no-install-recommends \
libglib2.0-0 \
libgl1 \
libsm6 \
libxext6 \
libxrender1 \
ffmpeg \
git \
git-lfs \
&& rm -rf /var/lib/apt/lists/*
ENV PYTHONUNBUFFERED=1 \
STREAMLIT_BROWSER_GATHER_USAGE_STATS=false
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
# scripts to run the app and utilities
COPY scripts ./scripts
# Clone the models from my Hugging Face repository
RUN git clone --depth 1 https://huggingface.co/johnamit/motionbench-models /tmp/motionbench-models \
&& cd /tmp/motionbench-models \
&& git lfs pull \
&& mv /tmp/motionbench-models/models /app/models \
&& rm -rf /tmp/motionbench-models
EXPOSE 7860
ENTRYPOINT ["streamlit", "run", "scripts/app/motionbench.py", "--server.port=7860", "--server.address=0.0.0.0"] |