Skip to content

Commit

Permalink
add Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Niko committed Oct 18, 2020
1 parent 6f1db75 commit f9f9915
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.git/
12 changes: 12 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
FROM ruby:2.7

WORKDIR /usr/src/app

COPY Gemfile ./
RUN bundle install

COPY . .

RUN chmod +x fingerprinter.rb
ENTRYPOINT ["/usr/src/app/fingerprinter.rb"]
CMD ["--help"]

0 comments on commit f9f9915

Please sign in to comment.