Initial commit

This commit is contained in:
nemunaire 2019-11-26 20:43:48 +01:00
commit e143984090
8 changed files with 205 additions and 0 deletions

7
hasher/Dockerfile Normal file
View 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