Skip to content

Commit d866505

Browse files
committed
Initial commit
1 parent af474d0 commit d866505

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

Dockerfile

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,7 @@
11
# corenlp-docker
22
Dockerfile 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.

0 commit comments

Comments
 (0)