From e98c9c2d161c5866a98cb5743d2d42044af4a023 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sun, 20 May 2018 10:10:25 -0400 Subject: [PATCH] test --- Dockerfile | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..01f6f20 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,23 @@ +FROM ubuntu:18.04 + +# -- Install Pipenv: +RUN apt update && apt install python-pip python3-pip time git -y && pip3 install pipenv + +ENV LC_ALL C.UTF-8 +ENV LANG C.UTF-8 + +# -- Install Application into container: +RUN set -ex && mkdir /app + +WORKDIR /pipenv + +# -------------------- +# - Using This File: - +# -------------------- + +# FROM kennethreitz/pipenv + +# COPY . /app + +# -- Replace with the correct path to your app's main executable +# CMD python3 main.py