Sha256: 86fd9eb664501eca485dda732e2a39877ab4b237ffe1aff11690aef868412da6

Contents?: true

Size: 374 Bytes

Versions: 3

Compression:

Stored size: 374 Bytes

Contents

FROM ruby:2.6

ENV APP_HOME /activerecord_cte
RUN mkdir $APP_HOME
WORKDIR $APP_HOME

ENV RAILS_ENV test
ENV INSTALL_MYSQL_GEM true
ENV INSTALL_PG_GEM true

# Cache the bundle install
COPY Gemfile* $APP_HOME/
COPY lib/activerecord/cte/version.rb $APP_HOME/lib/activerecord/cte/version.rb
COPY *.gemspec $APP_HOME/
RUN gem install bundler
RUN bundle install

ADD . $APP_HOME

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
activerecord-cte-0.1.3 Dockerfile
activerecord-cte-0.1.1 Dockerfile
activerecord-cte-0.1.0 Dockerfile