From 67c643775c0e23e62002f18b96aebcd46f3c0473 Mon Sep 17 00:00:00 2001 From: aviaviavi Date: Mon, 18 Feb 2019 20:06:48 -0800 Subject: [PATCH] fix docker and bump version --- Dockerfile | 5 ++++- package.yaml | 2 +- toodles.cabal | 4 ++-- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index ed13598..eda0c88 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,6 +11,8 @@ COPY src/ /toodles-app/src COPY test/ /toodles-app/test COPY web/ /toodles-app/web COPY README.md /toodles-app/ +COPY toodles-license-public-key.pem /toodles-app/ +COPY verify.py /toodles-app/ RUN stack install --only-dependencies @@ -30,9 +32,10 @@ EXPOSE 9001 # have to install stack to make the binary from the previous step work in our # container RUN apt-get update -RUN apt-get install -y wget +RUN apt-get install -y wget python-setuptools python-dev build-essential RUN wget -qO- https://get.haskellstack.org/ | sh +RUN easy_install pip RUN pip install pycrypto CMD ["toodles","-d","/repo/"] diff --git a/package.yaml b/package.yaml index 00a11b1..fddda7d 100644 --- a/package.yaml +++ b/package.yaml @@ -1,5 +1,5 @@ name: toodles -version: 1.1.0 +version: 1.1.1 github: "aviaviavi/toodles" license: MIT author: "Avi Press" diff --git a/toodles.cabal b/toodles.cabal index d6287b6..4423059 100644 --- a/toodles.cabal +++ b/toodles.cabal @@ -4,10 +4,10 @@ cabal-version: 1.12 -- -- see: https://github.com/sol/hpack -- --- hash: c52019037b5f82bddc9f28d4f29fb662919301ffde00f6a0229ea4d54c88d4b3 +-- hash: bc494ef165b0b679287cc77c353f22a8bdd36eb0ab597a64bfc9c7180235ea7b name: toodles -version: 1.1.0 +version: 1.1.1 synopsis: Manage the TODO entries in your code description: Toodles scrapes your entire repository for TODO entries and organizes them so you can manage your project directly from the code. View, filter, sort, and edit your TODO\'s with an easy to use web application. When you make changes via toodles, the edits will be applied directly the TODO entries in your code. When you\'re done, commit and push your changes to share them with your team! category: Project Management