Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- FROM python:latest
- WORKDIR /usr/app/src
- COPY . ./
- #Install Chrome
- RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -
- RUN sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list'
- RUN apt-get -y update
- RUN apt-get install -y google-chrome-stable
- RUN apt-get install -yqq unzip
- RUN wget -O /tmp/chromedriver.zip http://chromedriver.storage.googleapis.com/`curl -sS chromedriver.storage.googleapis.com/LATEST_RELEASE`/chromedriver_linux64.zip
- RUN unzip /tmp/chromedriver.zip chromedriver -d /usr/local/bin/
- # Install Python Libraries
- RUN pip install -r requirements.txt
- # Run
- CMD [ "python", "./test.py"]
Advertisement
Add Comment
Please, Sign In to add comment