Skip to content
Snippets Groups Projects
Commit 3fc5b5d6 authored by Philippe Suter's avatar Philippe Suter
Browse files

Get gevent from apt, not from pip

`pip install gevent` compiles it locally, which takes forever
parent 955178df
No related branches found
No related tags found
No related merge requests found
......@@ -11,9 +11,8 @@ RUN apt-get -y install --fix-missing python2.7-dev
RUN apt-get clean
# Install Python CGI helpers.
RUN apt-get -y install --fix-missing python-distribute python-pip
RUN apt-get -y install --fix-missing python-distribute python-pip python-gevent
RUN pip install -U flask
RUN pip install -U gevent
ENV FLASK_PROXY_PORT 8080
......
......@@ -13,9 +13,8 @@ RUN apt-get -y install git-core
RUN apt-get clean
# Install Python CGI helpers.
RUN apt-get -y install python-distribute python-pip
RUN apt-get -y install python-distribute python-pip python-gevent
RUN pip install -U flask
RUN pip install -U gevent
# Install Swift keys
RUN wget -q -O - https://swift.org/keys/all-keys.asc | gpg --import - && \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment