Spaces:
Sleeping
Sleeping
| FROM python:3.10.13-slim-bookworm | |
| # Set environment variables | |
| ENV HOME=/home/user \ | |
| PATH=/home/user/.local/bin:$PATH | |
| # Setup new user named user with UID 1000 | |
| RUN useradd -m -u 1000 user | |
| # Define working directory | |
| WORKDIR $HOME/app | |
| # Switch to user | |
| USER user | |
| # Copy the requirements file | |
| COPY --chown=user:user requirements.txt $HOME/app | |
| # Install the requirements | |
| RUN pip install -r requirements.txt | |
| # Copy the rest of the files | |
| COPY --chown=user:user . $HOME/app | |
| # Expose the port | |
| EXPOSE 7860/tcp | |
| # Run the application | |
| ENTRYPOINT ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"] |