Skip to content

Instantly share code, notes, and snippets.

@karakanb
Last active February 1, 2020 19:50
Show Gist options
  • Save karakanb/235dea92b18ae659ab51e1e106aa4b58 to your computer and use it in GitHub Desktop.
Save karakanb/235dea92b18ae659ab51e1e106aa4b58 to your computer and use it in GitHub Desktop.
Acceptance Tests Dockerfile
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