Sha256: 250563dde72b879812c9d310416d00954245ef3bd6c338f9a3a082dbe2ae6338

Contents?: true

Size: 455 Bytes

Versions: 5

Compression:

Stored size: 455 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 

ENV BUNDLE_PATH /gems

RUN bundle install
RUN yarn 

COPY . ./$APP_HOME



Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
roro-0.3.8 lib/roro/cli/templates/dockerize/Dockerfile.tt
roro-0.3.7 lib/roro/cli/templates/dockerize/Dockerfile.tt
roro-0.3.6 lib/roro/cli/templates/dockerize/Dockerfile.tt
roro-0.3.5 lib/roro/cli/templates/dockerize/Dockerfile.tt
roro-0.3.4 lib/roro/cli/templates/dockerize/Dockerfile.tt