Skip to content

fix not upgrading pip #18

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 31, 2018
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
14 changes: 6 additions & 8 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -79,18 +79,16 @@ RUN set -ex \
sqlite \
zlib1g \
; \
pip install --upgrade wheel ;\
pip install --upgrade python-ldap ;\
pip install --upgrade pyopenssl ;\
pip install --upgrade enum34 ;\
pip install --upgrade ipaddress ;\
pip install --upgrade lxml ;\
pip install --upgrade supervisor \
python -m pip install --upgrade pip ;\
python -m pip install --upgrade wheel ;\
python -m pip install --upgrade python-ldap ;\
python -m pip install --upgrade lxml ;\
python -m pip install --upgrade supervisor \
; \
git clone --branch $BV_SYN --depth 1 https://github.com/matrix-org/synapse.git \
&& cd /synapse \
git checkout tags/$TAG_SYN \
&& pip install --upgrade --process-dependency-links . \
&& python -m pip install --upgrade --process-dependency-links . \
&& GIT_SYN=$(git ls-remote https://github.com/matrix-org/synapse $BV_SYN | cut -f 1) \
&& echo "synapse: $BV_SYN ($GIT_SYN)" >> /synapse.version \
&& cd / \
Expand Down