aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
blob: 539cc173ed232b819d910a7034c447a315decd71 (plain)
1
2
3
4
5
6
7
8
9
10
FROM ruby:2.5

RUN gem update --system --quiet && gem install  bundler -v '~> 2.1'
ENV BUNDLER_VERSION 2.2
WORKDIR /usr/src/app
COPY Gemfile ./
RUN bundle install
COPY . .
EXPOSE 4567
CMD ["ruby", "herrschwarz.rb"]