Skip to content

Commit

Permalink
Unzip
Browse files Browse the repository at this point in the history
  • Loading branch information
chilland committed Aug 7, 2015
1 parent 9511ad7 commit 7036d44
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ RUN easy_install pip
ADD . /src

RUN cd src; git clone https://github.com/mit-nlp/MITIE.git
RUN cd src/MITIE; make MITIE-models

RUN cd src/MITIE, wget http://sourceforge.net/projects/mitie/files/binaries/MITIE-models-v0.2.tar.bz2
RUN cd src/MITIE, tar --no-same-owner -xjf MITIE-models-v0.2.tar.bz2

RUN cd src/MITIE/mitielib; mkdir build
RUN cd src/MITIE/mitielib/build; cmake ..
RUN cd src/MITIE/mitielib/build; cmake --build . --config Release --target install
Expand Down

0 comments on commit 7036d44

Please sign in to comment.