cjvt-corpusparser/dockerfiles/cjvt-corpusparser-env/Dockerfile

17 lines
201 B
Docker
Raw Normal View History

2019-03-17 12:22:01 +00:00
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 \
2019-03-17 16:25:19 +00:00
pathlib \
pymongo
2019-03-17 12:22:01 +00:00
ENV PYTHONIOENCODING UTF-8