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