Spaces:
Runtime error
Runtime error
| FROM python:3.11 | |
| WORKDIR /code | |
| COPY ./requirements.txt /code/requirements.txt | |
| RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt | |
| RUN pip install nltk | |
| RUN pip install -U snscrape | |
| # Download NLTK resources | |
| RUN python -m nltk.downloader punkt | |
| RUN python3 -m nltk.downloader punkt | |
| RUN python3 -m spacy download en_core_web_sm | |
| RUN --mount=type=secret,id=twitter_consumer_key,mode=0444,required=true | |
| RUN --mount=type=secret,id=twitter_consumer_secret,mode=0444,required=true | |
| RUN --mount=type=secret,id=twitter_access_token,mode=0444,required=true | |
| RUN --mount=type=secret,id=twitter_access_token_secret,mode=0444,required=true | |
| RUN useradd -m -u 1000 user | |
| USER user | |
| ENV HOME=/home/user \ | |
| PATH=/home/user/.local/bin:$PATH | |
| WORKDIR $HOME/app | |
| COPY --chown=user . $HOME/app | |
| CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"] |