Sha256: beea6713351b7c82f144e1abd72d598aee2bee4c269c1a336049fe02ac0a769f

Contents?: true

Size: 429 Bytes

Versions: 8

Compression:

Stored size: 429 Bytes

Contents

FROM ruby:__ruby_version__

# use a newer version of Node to use Yarn
RUN curl -sL https://deb.nodesource.com/setup_8.x | bash -

# nodejs: Rails needs a JS runtime
# cmake: required by Rugged, dependency of Pronto
RUN apt-get update -qq \
    && apt-get install -y -qq nodejs cmake

RUN npm install -g yarn

RUN mkdir /app
WORKDIR /app

ADD Gemfile /app/Gemfile
ADD Gemfile.lock /app/Gemfile.lock
RUN bundle install

ADD . /app

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
gnarails-3.0.1 templates/Dockerfile
gnarails-3.0.0 templates/Dockerfile
gnarails-2.0.0 templates/Dockerfile
gnarails-1.0.0 templates/Dockerfile
gnarails-0.9.3 templates/Dockerfile
gnarails-0.9.2 templates/Dockerfile
gnarails-0.9.1 templates/Dockerfile
gnarails-0.9.0 templates/Dockerfile