2020-04-16 13:50:52 -05:00
|
|
|
FROM ruby:2.6.6-stretch
|
2018-09-06 16:29:07 -05:00
|
|
|
ARG USER
|
|
|
|
RUN mkdir /myapp
|
|
|
|
COPY script/build/debian/prebuild.sh myapp/script/build/debian/prebuild.sh
|
|
|
|
RUN myapp/script/build/debian/prebuild.sh
|
|
|
|
COPY script/build/debian/node.sh myapp/script/build/debian/node.sh
|
|
|
|
RUN myapp/script/build/debian/node.sh
|
|
|
|
COPY script/build/debian/postgres.sh myapp/script/build/debian/postgres.sh
|
|
|
|
RUN myapp/script/build/debian/postgres.sh
|
2019-01-09 17:57:35 -06:00
|
|
|
COPY gems /myapp/gems/
|
2018-09-06 16:29:07 -05:00
|
|
|
WORKDIR /myapp
|
|
|
|
COPY Gemfile /myapp/Gemfile
|
|
|
|
COPY Gemfile.lock /myapp/Gemfile.lock
|
2019-11-05 16:17:11 -06:00
|
|
|
RUN gem install bundler -v "~>1.0"
|
2018-09-06 16:29:07 -05:00
|
|
|
RUN bundle install
|
2018-10-26 11:13:19 -05:00
|
|
|
CMD rake -T
|
2018-10-25 17:12:28 -05:00
|
|
|
|