Sha256: 18429c279422f8bb2b185bcead75050a3b726ef25a9ee961119dc0ddc229f8c1

Contents?: true

Size: 479 Bytes

Versions: 1

Compression:

Stored size: 479 Bytes

Contents

FROM ruby:2.4.1-alpine

RUN apk update && apk upgrade && \
    apk add --no-cache bash git openssh build-base
RUN apk add --no-cache postgresql-dev

RUN gem install bundler -v 1.16.0

WORKDIR /opt/phobos_db_checkpoint

ADD Gemfile Gemfile
ADD phobos_db_checkpoint.gemspec phobos_db_checkpoint.gemspec
ADD lib/phobos_db_checkpoint/version.rb lib/phobos_db_checkpoint/version.rb

RUN bundle config build.pg --with-pg-config=/usr/pgsql-9.6/bin/pg_config
RUN bundle install

ADD . .

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
phobos_db_checkpoint-3.4.0 Dockerfile