cjvt-valency/dockerfiles/python-env/Dockerfile
2019-03-17 17:25:59 +01:00

22 lines
254 B
Docker

FROM ubuntu:16.04
RUN apt-get update --fix-missing
RUN apt-get install -y \
vim \
python3 \
python3-pip \
sshfs
RUN pip3 install \
lxml \
pandas \
sklearn \
argparse \
pathlib \
pymongo
RUN apt-get install -y \
curl
ENV PYTHONIOENCODING UTF-8