mirror of
https://github.com/pry/pry-rails.git
synced 2022-11-09 12:36:03 -05:00
6 lines
129 B
Text
6 lines
129 B
Text
|
FROM ruby:2.0
|
||
|
RUN mkdir -p /scenario
|
||
|
WORKDIR /scenario
|
||
|
ENV LANG=C.UTF-8
|
||
|
CMD (bundle check || bundle install) && bundle exec rake
|