randomF0rm4t

Untitled

Mar 10th, 2024
321
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. FROM ultrafunk/undetected-chromedriver
  2.  
  3. # update chrome
  4. RUN apt update -y && apt install -y google-chrome-stable
  5.  
  6. WORKDIR /usr/app/src
  7. COPY . ./
  8.  
  9. # Install Python Libraries
  10. RUN pip install -r requirements.txt
  11.  
  12. # Run
  13. CMD [ "python", "./test.py"]
Advertisement
Add Comment
Please, Sign In to add comment