summaryrefslogtreecommitdiff
path: root/Dockerfile
blob: c74b0482c938c68ef3d948944079d3d70c5d2eeb (plain)
1
2
3
4
5
6
7
8
9
FROM ruby:2.5

RUN bundle config --global frozen 1
WORKDIR /usr/src/app
COPY Gemfile Gemfile.lock ./
RUN bundle install
COPY . .
EXPOSE 4567
CMD ["ruby", "herrschwarz.rb"]