Spaces:
Running
Running
| FROM python:3.10 | |
| RUN apt-get update && apt-get install -y \ | |
| fakeroot && \ | |
| mv /usr/bin/apt-get /usr/bin/.apt-get && \ | |
| echo '#!/usr/bin/env sh\nfakeroot /usr/bin/.apt-get $@' > /usr/bin/apt-get && \ | |
| chmod +x /usr/bin/apt-get && \ | |
| rm -rf /var/lib/apt/lists/* && \ | |
| useradd -m -u 1000 user | |
| WORKDIR /home/user/app | |
| RUN apt-get update && apt-get install -y \ | |
| git \ | |
| git-lfs \ | |
| ffmpeg \ | |
| libsm6 \ | |
| libxext6 \ | |
| cmake \ | |
| rsync \ | |
| libgl1 \ | |
| && rm -rf /var/lib/apt/lists/* \ | |
| && git lfs install | |
| RUN pip install --no-cache-dir pip==22.3.1 && \ | |
| pip install --no-cache-dir \ | |
| datasets \ | |
| "huggingface-hub>=0.19" "hf-transfer>=0.1.4" "protobuf<4" "click<8.1" "pydantic~=1.0" | |
| COPY requirements.txt /tmp/requirements.txt | |
| RUN pip install --no-cache-dir -r /tmp/requirements.txt | |
| RUN pip install --no-cache-dir \ | |
| streamlit==1.34.0 \ | |
| "uvicorn>=0.14.0" \ | |
| spaces | |
| RUN mkdir -p .streamlit && \ | |
| git config --global core.excludesfile ~/.gitignore && \ | |
| echo ".streamlit" > ~/.gitignore | |
| COPY --chown=1000:1000 ./ /home/user/app | |
| USER user | |
| CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0"] | |