Sha256: ccd82f24374f0fc6293f4295b5f6686d24f9a07f32341501c2adc23c34e7cb6f
Contents?: true
Size: 507 Bytes
Versions: 1
Compression:
Stored size: 507 Bytes
Contents
# This Dockerfile extends the Examples-ORM testing image in order to # install specific dependencies required for ActiveRecord tests. FROM cockroachdb/postgres-test:20170308-1644 # Native dependencies for libxml-ruby and sqlite3. RUN apt-get update -y && apt-get install -y \ libxslt-dev \ libxml2-dev \ libsqlite3-dev \ && rm -rf /var/lib/apt/lists/* # Ruby testing dependencies. RUN gem install bundle rake # Add global Gem binaries to the path. ENV PATH /usr/local/lib/ruby/gems/2.4.0::$PATH
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
activerecord-cockroachdb-adapter-0.2.3 | build/Dockerfile |