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
# Objective: Running selenium python scripts in alpine without grid | |
FROM python:3.7.2-alpine3.8 | |
RUN pip install selenium | |
RUN apk add chromium | |
RUN apk add chromium-chromedriver | |
ENV CHROME_BIN=/usr/bin/chromium-browser \ |