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