Skip to content
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

Checkout to docker PR commit of gensim in dockerfile #1456

Merged
merged 1 commit into from
Jun 30, 2017
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
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM ubuntu:16.04
MAINTAINER Parul Sethi <parul1sethi@gmail.com>

ENV GENSIM_REPOSITORY https://github.com/RaRe-Technologies/gensim.git
ENV GENSIM_VERSION 2.2.0
ENV GENSIM_VERSION bd6db9a41baf219ecc4a1770cc21b01c8ff122e5

# Installs python, pip and setup tools (with fixed versions)
RUN apt-get update \
Expand Down Expand Up @@ -66,7 +66,7 @@ RUN pip3 install -U numpy
# Download gensim from Github
RUN git clone $GENSIM_REPOSITORY \
&& cd /gensim \
&& git checkout tags/$GENSIM_VERSION \
&& git checkout $GENSIM_VERSION \
&& pip2 install .[test] \
&& python2 setup.py install \
&& pip3 install .[test] \
Expand Down