Spaces:
Sleeping
Sleeping
| FROM python:3.12 | |
| RUN useradd -m -u 1000 user | |
| ENV HOME=/home/user \ | |
| PATH=/home/user/.local/bin:$PATH | |
| COPY . $HOME/app | |
| ENV HF_TOKEN=${HF_TOKEN} | |
| RUN echo "The token is: ${HF_TOKEN}" | |
| RUN pip install --no-cache-dir --upgrade -r $HOME/app/requirements.txt && \ | |
| huggingface-cli login --token $HF_TOKEN --add-to-git-credential | |
| # Opt to user instead of root | |
| USER user | |
| RUN chown -R user:user $HOME | |
| WORKDIR $HOME/app | |
| EXPOSE 7860 | |
| CMD streamlit run app.py \ | |
| --server.headless true \ | |
| --server.enableCORS false \ | |
| --server.enableXsrfProtection false \ | |
| --server.fileWatcherType none \ |