pragetx-rag / Dockerfile
h3110Fr13nd's picture
Update Dockerfile
7a89c8b verified
raw
history blame
645 Bytes
FROM python
COPY requirements.txt /app/requirements.txt
WORKDIR /app
RUN pip install -r requirements.txt
RUN playwright install-deps
RUN --mount=type=secret,id=HF_EMAIL,mode=0444,required=true \
cat /run/secrets/HF_EMAIL
RUN --mount=type=secret,id=HF_PASS,mode=0444,required=true \
cat /run/secrets/HF_PASS
RUN useradd -m -u 1000 user
USER user
ENV HOME=/home/user \
PATH=/home/user/.local/bin:$PATH
WORKDIR $HOME/app
RUN playwright install
COPY --chown=user . $HOME/app
WORKDIR $HOME/app/pragetx_scraper
RUN scrapy crawl pages && \
cd $HOME/app && \
python setup.py
WORKDIR $HOME/app
EXPOSE 7860
CMD ["python", "main.py"]