Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Explicitly install python-3.6 #41

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion images/python36/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
FROM markadams/chromium-xvfb

RUN apt-get update && apt-get install -y \
ENV DEBIAN_FRONTEND noninteractive
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks so much for the commit message. I was stuck on installing python3.6 on our docker image for a while and this commit saved me a couple of hours.

RUN apt-get update && \
apt-get install -y \
python3.6 python3-pip curl unzip libgconf-2-4

RUN pip3 install pytest selenium
Expand Down