corpusparser as standalone project

This commit is contained in:
2019-03-17 13:22:01 +01:00
commit f87eafd9f2
13 changed files with 437 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
FROM ubuntu:16.04
RUN apt-get update --fix-missing
RUN apt-get install -y \
vim \
python3 \
python3-pip \
sshfs
RUN pip3 install \
lxml \
argparse \
pathlib
ENV PYTHONIOENCODING UTF-8