Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,15 @@ RUN chmod +x ./install.sh && sync && \
# install pip, tox
ADD https://bootstrap.pypa.io/get-pip.py get-pip.py
RUN python2.7 get-pip.py && \
python3.6 get-pip.py && \
pip install tox && \
rm get-pip.py

#install pyyaml, six, werkzeug
RUN python3.6 -m pip install pyyaml
RUN python3.6 -m pip install six
RUN Python3.6 -m pip install werkzeug
RUN Python3.6 -m pip install flask
RUN python3.6 -m pip install werkzeug
RUN python3.6 -m pip install flask

# set up default sendgrid env
WORKDIR /root/sources
Expand Down