Skip to content
This repository has been archived by the owner on Jul 8, 2022. It is now read-only.

Point /usr/bin/python at python2.7 #12

Merged
Merged
Changes from all commits
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
2 changes: 2 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,8 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get update && \
apt-get clean && \
rm -rf /var/lib/apt/lists* /tmp/* /var/tmp/*

RUN update-alternatives --install /usr/bin/python python /usr/bin/python2.7 1000

# Install behave and hamcrest for testing
RUN pip3 install behave pyhamcrest requests

Expand Down