We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ac58c6 commit 0ca2578Copy full SHA for 0ca2578
1 file changed
docker/Dockerfile
@@ -25,14 +25,15 @@ RUN chmod +x ./install.sh && sync && \
25
# install pip, tox
26
ADD https://bootstrap.pypa.io/get-pip.py get-pip.py
27
RUN python2.7 get-pip.py && \
28
+ python3.6 get-pip.py && \
29
pip install tox && \
30
rm get-pip.py
31
32
#install pyyaml, six, werkzeug
33
RUN python3.6 -m pip install pyyaml
34
RUN python3.6 -m pip install six
-RUN Python3.6 -m pip install werkzeug
35
-RUN Python3.6 -m pip install flask
+RUN python3.6 -m pip install werkzeug
36
+RUN python3.6 -m pip install flask
37
38
# set up default sendgrid env
39
WORKDIR /root/sources
0 commit comments