Spaces:
Sleeping
Sleeping
| # FROM python | |
| # WORKDIR /code | |
| # COPY ./requirements.txt /code/requirements.txt | |
| # RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt | |
| # COPY . . | |
| # CMD ["gunicorn", "-w", "1", "main:app"] | |
| FROM python | |
| WORKDIR /code | |
| COPY ./requirements.txt /code/requirements.txt | |
| RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt | |
| RUN useradd -m -u 1000 user | |
| USER user | |
| ENV HOME=/home/user \ | |
| PATH=/home/user/.local/bin:$PATH | |
| WORKDIR $HOME/app | |
| RUN mkdir $HOME/.cache | |
| COPY --chown=user . $HOME/app | |
| CMD ["gunicorn", "-w", "1", "main:app"] |