Skip to content

Commit

Permalink
Scrum primer Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Bas Vodde committed Feb 4, 2024
1 parent b20bfba commit 5841e4e
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
FROM ruby:2.7.8

RUN gem install bundler -v 2.1.4

WORKDIR /usr/src/app
ADD . /usr/src/app

RUN apt update
RUN bundle install

ENV RACK_ENV production

ENTRYPOINT ["rackup", "-o", "0.0.0.0"]

0 comments on commit 5841e4e

Please sign in to comment.