Skip to content

Commit 7bb94ac

Browse files
Merge pull request #596 from lifez/fix-docker-build
#Issue584 Fix docker build
2 parents 6102136 + 0ca2578 commit 7bb94ac

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

docker/Dockerfile

+3-2
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,15 @@ RUN chmod +x ./install.sh && sync && \
2828
# install pip, tox
2929
ADD https://bootstrap.pypa.io/get-pip.py get-pip.py
3030
RUN python2.7 get-pip.py && \
31+
python3.6 get-pip.py && \
3132
pip install tox && \
3233
rm get-pip.py
3334

3435
#install pyyaml, six, werkzeug
3536
RUN python3.6 -m pip install pyyaml
3637
RUN python3.6 -m pip install six
37-
RUN Python3.6 -m pip install werkzeug
38-
RUN Python3.6 -m pip install flask
38+
RUN python3.6 -m pip install werkzeug
39+
RUN python3.6 -m pip install flask
3940

4041
# set up default sendgrid env
4142
WORKDIR /root/sources

0 commit comments

Comments
 (0)