16 lines
190 B
Docker
16 lines
190 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
|
|
|
|
ENV PYTHONIOENCODING UTF-8
|