Initial commit
This commit is contained in:
commit
e143984090
8 changed files with 205 additions and 0 deletions
7
hasher/Dockerfile
Normal file
7
hasher/Dockerfile
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
FROM ruby:alpine
|
||||
RUN apk add --update build-base curl
|
||||
RUN gem install sinatra
|
||||
RUN gem install thin
|
||||
ADD hasher.rb /
|
||||
CMD ["ruby", "hasher.rb"]
|
||||
EXPOSE 80
|
||||
Reference in a new issue