Created
October 30, 2018 02:53
-
-
Save coleca/4d4470bd1323c0ea374c9c8a16c1a27e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM python:3.7-alpine3.8 | |
# update apk repo | |
RUN echo "http://dl-4.alpinelinux.org/alpine/v3.8/main" >> /etc/apk/repositories && \ | |
echo "http://dl-4.alpinelinux.org/alpine/v3.8/community" >> /etc/apk/repositories | |
# install chromedriver | |
RUN apk update | |
RUN apk add chromium chromium-chromedriver py3-lxml | |
# install selenium | |
RUN pip install selenium==3.13.0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment