Sha256: acd88daac176f085302fee942b7c80ccab79a459d69b2b9a6af4e691147be1e4

Contents?: true

Size: 316 Bytes

Versions: 1

Compression:

Stored size: 316 Bytes

Contents

FROM ruby:2.5.1-alpine

RUN apk add --update \
  build-base \
  libxml2-dev \
  libxslt-dev \
  postgresql-dev \
  postgresql-client \
  tzdata \
  git \
  && rm -rf /var/cache/apk/*

ENV APP_HOME /src

RUN mkdir $APP_HOME
WORKDIR $APP_HOME

ENV BUNDLE_PATH=/bundle

ADD . $APP_HOME

RUN bundle install

CMD ['ash']

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
pg_conduit-0.1.0 Dockerfile