Skip to content

Commit

Permalink
add docker fileˆ
Browse files Browse the repository at this point in the history
  • Loading branch information
boazca committed Sep 3, 2019
1 parent bccf6e5 commit 53fd3cc
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
*.swp
*~
_output

vendor
13 changes: 13 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
FROM alpine:3.4
MAINTAINER Alex Shemshurenko <[email protected]>

RUN apk update

RUN mkdir /logs

COPY test-adapter /adaptor

COPY start.sh /start.sh
RUN chmod 777 /start.sh

CMD ["/start.sh"]
2 changes: 2 additions & 0 deletions start.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#!/bin/sh
/adaptor start

0 comments on commit 53fd3cc

Please sign in to comment.