GildedRose-Refactoring-Kata/ruby/Dockerfile
2021-05-26 20:24:07 -03:00

10 lines
140 B
Docker

FROM ruby:2.6
RUN mkdir -p /app
WORKDIR /app
RUN gem install bundler:2.1.4
COPY Gemfile Gemfile.lock /app/
RUN bundle install
COPY . /app