java_python env dockerfile, progress on parser

This commit is contained in:
voje
2019-02-12 08:24:46 +01:00
parent b617fb5e16
commit 47bb4ce0ad
9 changed files with 56 additions and 7 deletions

View File

@@ -0,0 +1,12 @@
FROM ubuntu:16.04
RUN apt-get update
RUN apt-get install -y \
vim \
default-jdk \
python3 \
python3-pip
RUN pip3 install lxml
ENV PYTHONIOENCODING UTF-8

12
dockerfiles/all/README.md Normal file
View File

@@ -0,0 +1,12 @@
You might want to mount this whole repo into the docker container.
Also mount data locations.
Example container:
```bash
$ docker build . -t my_python
$ docker run \
-it \
-v $(echo $(cd ../..; pwd)):/cjvt-srl-tagging \
python_java \
/bin/bash
```