Skip to content

Instantly share code, notes, and snippets.

@coleca
Created October 30, 2018 02:53
Show Gist options
  • Save coleca/4d4470bd1323c0ea374c9c8a16c1a27e to your computer and use it in GitHub Desktop.
Save coleca/4d4470bd1323c0ea374c9c8a16c1a27e to your computer and use it in GitHub Desktop.
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