Skip to content

Commit 67c6437

Browse files
committed
fix docker and bump version
1 parent 2ef0860 commit 67c6437

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

Dockerfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ COPY src/ /toodles-app/src
1111
COPY test/ /toodles-app/test
1212
COPY web/ /toodles-app/web
1313
COPY README.md /toodles-app/
14+
COPY toodles-license-public-key.pem /toodles-app/
15+
COPY verify.py /toodles-app/
1416

1517
RUN stack install --only-dependencies
1618

@@ -30,9 +32,10 @@ EXPOSE 9001
3032
# have to install stack to make the binary from the previous step work in our
3133
# container
3234
RUN apt-get update
33-
RUN apt-get install -y wget
35+
RUN apt-get install -y wget python-setuptools python-dev build-essential
3436
RUN wget -qO- https://get.haskellstack.org/ | sh
3537

38+
RUN easy_install pip
3639
RUN pip install pycrypto
3740

3841
CMD ["toodles","-d","/repo/"]

package.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: toodles
2-
version: 1.1.0
2+
version: 1.1.1
33
github: "aviaviavi/toodles"
44
license: MIT
55
author: "Avi Press"

toodles.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ cabal-version: 1.12
44
--
55
-- see: https://github.com/sol/hpack
66
--
7-
-- hash: c52019037b5f82bddc9f28d4f29fb662919301ffde00f6a0229ea4d54c88d4b3
7+
-- hash: bc494ef165b0b679287cc77c353f22a8bdd36eb0ab597a64bfc9c7180235ea7b
88

99
name: toodles
10-
version: 1.1.0
10+
version: 1.1.1
1111
synopsis: Manage the TODO entries in your code
1212
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!
1313
category: Project Management

0 commit comments

Comments
 (0)