Sha256: 8b7a101fb1d50864410080d43b34b5f7bb33637e627c87ebfb6f168609c95613

Contents?: true

Size: 402 Bytes

Versions: 2

Compression:

Stored size: 402 Bytes

Contents

FROM postgres:10.5-alpine

RUN apk add --no-cache git build-base ruby ruby-full ruby-dev

RUN gem install -q --no-ri --no-rdoc -v '~> 1' bundler

RUN mkdir /gem
WORKDIR /gem

COPY ./ ./
RUN bundle install --no-cache

ENV DATABASE_URL=postgresql://postgres@localhost/postgres?pool=5

ENTRYPOINT []

CMD ["sh", "-c", "(nohup /docker-entrypoint.sh postgres > /dev/null &) && sleep 3 && bundle exec rake"]

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
active_record-pgcrypto-0.2.0 Dockerfile
active_record-pgcrypto-0.1.1 Dockerfile