Sha256: 6c93967c09b4372b6d9f79bebb5acdd1edef775bcea3f790c85b4f9195412933
Contents?: true
Size: 639 Bytes
Versions: 14
Compression:
Stored size: 639 Bytes
Contents
FROM ruby:<%= config[:ruby_version] %> RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - RUN echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list RUN apt-get update -qq && apt-get install -y build-essential git nodejs yarn ENV APP_HOME /usr/src/app/ RUN mkdir $APP_HOME WORKDIR $APP_HOME COPY Gemfile* $APP_HOME COPY lib/jumpstart $APP_HOME ENV BUNDLE_PATH /gems RUN bundle update --bundler RUN bundle install RUN yarn install --check-files COPY . ./$APP_HOME RUN bundle install COPY ./hosts.example /etc/hosts CMD ["bin/rails", "s", "-b", "0.0.0.0"]
Version data entries
14 entries across 14 versions & 1 rubygems