Spaces:
Sleeping
Sleeping
FROM python:3.8 | |
COPY requirements.txt requirements.txt | |
RUN pip3 install -r requirements.txt | |
RUN useradd -m -u 1000 user | |
USER user | |
ENV HOME=/home/user \ | |
PATH=/home/user/.local/bin:$PATH \ | |
HF_HOME=/home/app/.cache/huggingface | |
WORKDIR $HOME/app | |
COPY --chown=user . $HOME/app | |
CMD ["sh", "-c", "python3 main.py"] |