Skip to content

Commit

Permalink
python command alias to Py3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
lmazuel committed Feb 8, 2018
1 parent ecc554d commit 0eda36b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,11 @@ RUN add-apt-repository ppa:gophers/archive && \
apt-get install -y golang-1.9-go
ENV PATH="/usr/lib/go-1.9/bin:${PATH}"

# Python 3.6
# Python 3.6 (as default Python)
RUN add-apt-repository ppa:jonathonf/python-3.6 && \
apt-get update && \
apt-get install -y python3.6
apt-get install -y python3.6 && \
ln -s /usr/bin/python3.6 /usr/local/bin/python

# Install pip for Python 3.6
RUN curl -sL https://bootstrap.pypa.io/get-pip.py | python3.6
Expand Down

0 comments on commit 0eda36b

Please sign in to comment.