From 01249c2d4a8f467614e0eca0fbab7e6ffbc6d87f Mon Sep 17 00:00:00 2001 From: Kaustubh Phatak Date: Thu, 8 Dec 2016 14:55:34 -0800 Subject: [PATCH] adding commonly used python libraries --- .gitignore | 3 +++ environments/python3/Dockerfile | 1 + environments/python3/requirements.txt | 5 +++++ 3 files changed, 9 insertions(+) diff --git a/.gitignore b/.gitignore index b25c15b8..fc70c76c 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,4 @@ *~ + +# Pycharm IDE +.idea \ No newline at end of file diff --git a/environments/python3/Dockerfile b/environments/python3/Dockerfile index b04d09be..2d85ebcc 100644 --- a/environments/python3/Dockerfile +++ b/environments/python3/Dockerfile @@ -2,6 +2,7 @@ FROM ubuntu:16.04 RUN apt-get update -y RUN apt-get install -y python3 python3-pip python3-dev build-essential +RUN pip3 install --upgrade pip COPY . /app WORKDIR /app diff --git a/environments/python3/requirements.txt b/environments/python3/requirements.txt index 9f85444c..119b6461 100644 --- a/environments/python3/requirements.txt +++ b/environments/python3/requirements.txt @@ -1 +1,6 @@ Flask===0.11.1 +httplib2 +python-dateutil +requests==2.7.0 +stevedore +websocket-client