Skip to content

Commit 0ca2578

Browse files
committed
Install pip for python3.6
1 parent 1ac58c6 commit 0ca2578

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

docker/Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,15 @@ RUN chmod +x ./install.sh && sync && \
2525
# install pip, tox
2626
ADD https://bootstrap.pypa.io/get-pip.py get-pip.py
2727
RUN python2.7 get-pip.py && \
28+
python3.6 get-pip.py && \
2829
pip install tox && \
2930
rm get-pip.py
3031

3132
#install pyyaml, six, werkzeug
3233
RUN python3.6 -m pip install pyyaml
3334
RUN python3.6 -m pip install six
34-
RUN Python3.6 -m pip install werkzeug
35-
RUN Python3.6 -m pip install flask
35+
RUN python3.6 -m pip install werkzeug
36+
RUN python3.6 -m pip install flask
3637

3738
# set up default sendgrid env
3839
WORKDIR /root/sources

0 commit comments

Comments
 (0)