Last active
February 1, 2020 19:50
-
-
Save karakanb/235dea92b18ae659ab51e1e106aa4b58 to your computer and use it in GitHub Desktop.
Acceptance Tests Dockerfile
This file contains hidden or 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.8-alpine3.11 | |
# update apk repo | |
RUN echo "http://dl-4.alpinelinux.org/alpine/v3.11/main" >> /etc/apk/repositories && \ | |
echo "http://dl-4.alpinelinux.org/alpine/v3.11/community" >> /etc/apk/repositories | |
# install chromedriver | |
RUN apk --no-cache add chromium chromium-chromedriver | |
# install selenium | |
RUN pip install selenium pytest |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment