mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2026-02-15 22:41:30 +00:00
10 lines
140 B
Docker
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 |