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