File tree Expand file tree Collapse file tree 2 files changed +19
-0
lines changed
Expand file tree Collapse file tree 2 files changed +19
-0
lines changed Original file line number Diff line number Diff line change 1+ FROM java:8
2+
3+ MAINTAINER Casey Hilland <casey dot hilland at gmail dot com>
4+
5+ RUN wget http://nlp.stanford.edu/software/stanford-corenlp-full-2015-12-09.zip
6+ RUN unzip stanford-corenlp-full-2015-12-09.zip
7+
8+ WORKDIR stanford-corenlp-full-2015-12-09
9+
10+ RUN export CLASSPATH="`find . -name '*.jar'`"
11+
12+ EXPOSE 9000
13+
14+ CMD java -cp "*" -mx4g edu.stanford.nlp.pipeline.StanfordCoreNLPServer
Original file line number Diff line number Diff line change 11# corenlp-docker
22Dockerfile for Stanford CoreNLP Server
3+ ---------
4+
5+ This Dockerfile builds the [ Stanford CoreNLP
6+ Server] ( http://stanfordnlp.github.io/CoreNLP/corenlp-server.html ) and exposes
7+ the endpoint on port 9000. Requests are made as covered in the documentation.
You can’t perform that action at this time.
0 commit comments