└── Dockerfile /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM ubuntu:18.04 2 | 3 | # -- Install Pipenv: 4 | RUN apt update && apt install python-pip python3-pip time git -y && pip3 install pipenv 5 | 6 | ENV LC_ALL C.UTF-8 7 | ENV LANG C.UTF-8 8 | 9 | # -- Install Application into container: 10 | RUN set -ex && mkdir /app 11 | 12 | WORKDIR /pipenv 13 | --------------------------------------------------------------------------------