Sha256: 743311801930f4cf86fb8cc085ce8cdc8e628fa637a6a3f2fed11ccc6f131eb7

Contents?: true

Size: 334 Bytes

Versions: 4

Compression:

Stored size: 334 Bytes

Contents

FROM ruby:2.6.3

RUN apt-get update -qq
RUN apt-get upgrade -y
RUN apt-get install -y build-essential libpq-dev nodejs postgresql-client openjdk-8-jre
RUN mkdir /app
WORKDIR /app

ENV BUNDLE_GEMFILE=/app/Gemfile \
  BUNDLE_JOBS=2 \
  BUNDLE_PATH=/bundle \
  GEM_HOME=/bundle

RUN gem install bundler

ENV PATH=./bin:$PATH

ADD . /app

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
ezapi_client-1.1.1 Dockerfile
ezapi_client-1.1.0 Dockerfile
ezapi_client-1.0.3 Dockerfile
ezapi_client-1.0.2 Dockerfile