| # read the doc: https://huggingface.co/docs/hub/spaces-sdks-docker | |
| # you will also find guides on how best to write your Dockerfile | |
| FROM python:3.9 | |
| ### Set up user with permissions | |
| # Set up a new user named "user" with user ID 1000 | |
| RUN useradd -m -u 1000 user | |
| # Switch to the "user" user | |
| USER user | |
| RUN mkdir /code | |
| RUN chmod 777 /code | |
| WORKDIR /code | |
| COPY ./requirements.txt /code/requirements.txt | |
| RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt | |
| COPY . . | |
| # RUN mkdir -p /cache | |
| ### Update permissions for the app | |
| # USER root | |
| # RUN chmod 777 $PWD | |
| # RUN chmod 777 / | |
| # USER user | |
| CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"] | |
| # CMD [ "python", "app.py" ] |