17 lines
201 B
Docker
17 lines
201 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 \
|
|
argparse \
|
|
pathlib \
|
|
pymongo
|
|
|
|
ENV PYTHONIOENCODING UTF-8
|