Spaces:
Running
Running
File size: 468 Bytes
43dfddb 30122c4 43dfddb 30122c4 43dfddb 30122c4 43dfddb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
FROM python
COPY requirements.txt /app/requirements.txt
WORKDIR /app
RUN pip install -r requirements.txt
RUN playwright install-deps && \
playwright install
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
WORKDIR $HOME/app/pragetx_scraper
RUN scrapy crawl pages && \
cd $HOME/app && \
python setup.py
WORKDIR $HOME/app
EXPOSE 7860
CMD ["python", "main.py"]
|