Skip to content

Commit

Permalink
add hook-find file
Browse files Browse the repository at this point in the history
  • Loading branch information
dcw312 committed Nov 7, 2017
1 parent ea4d0bb commit 15874d4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Dockerfile
Expand Up @@ -5,12 +5,15 @@ COPY funds_h160.blf /home/lbc/funds_h160.blf
COPY send-it.sh /home/lbc/send-it.sh

COPY entrypoint.sh /home/lbc/entrypoint.sh
COPY hook-find /home/lbc/hook-find

RUN chown lbc:lbc /home/lbc/funds_h160.blf \
&& chown lbc:lbc /home/lbc/send-it.sh \
&& chmod +x /home/lbc/send-it.sh \
&& chown lbc:lbc /home/lbc/entrypoint.sh \
&& chmod +x /home/lbc/entrypoint.sh
&& chmod +x /home/lbc/entrypoint.sh \
&& chown lbc:lbc /home/lbc/hook-find \
&& chmod +x /home/lbc/hook-find

USER lbc

Expand Down
3 changes: 3 additions & 0 deletions hook-find
@@ -0,0 +1,3 @@
#!/usr/bin/env bash
./send-it.sh
echo "called send-it.sh"

0 comments on commit 15874d4

Please sign in to comment.