Skip to content

Commit

Permalink
fix docker and bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
aviaviavi committed Feb 19, 2019
1 parent 2ef0860 commit 67c6437
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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/"]
2 changes: 1 addition & 1 deletion package.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: toodles
version: 1.1.0
version: 1.1.1
github: "aviaviavi/toodles"
license: MIT
author: "Avi Press"
Expand Down
4 changes: 2 additions & 2 deletions toodles.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 67c6437

Please sign in to comment.