From b59591fe60aca37fa5ce7a713e887b142f15ef2d Mon Sep 17 00:00:00 2001 From: Jose Oliveros Date: Mon, 4 Jun 2018 12:21:42 -0500 Subject: [PATCH] add dockerfile-tricorder Signed-off-by: Jose Oliveros --- Dockerfile-tricorder | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Dockerfile-tricorder diff --git a/Dockerfile-tricorder b/Dockerfile-tricorder new file mode 100644 index 0000000000..0ccbf26ad3 --- /dev/null +++ b/Dockerfile-tricorder @@ -0,0 +1,9 @@ +FROM python:latest +ENV PYTHONUNBUFFERED 1 + +COPY . /twilio-python +WORKDIR /app + +RUN pip install /twilio-python + +CMD python -c "import twilio; print(f'twilio-python: {twilio.__version__}')" \ No newline at end of file