Sha256: cc57c3e6627d40494c404cc99934509a8626efa82600e27914e56ef9b4355767

Contents?: true

Size: 384 Bytes

Versions: 1

Compression:

Stored size: 384 Bytes

Contents

FROM ruby:2.4
MAINTAINER dp@vivitec.com.au

RUN apt-get update && apt-get install -y \
  build-essential

RUN mkdir -p /app
WORKDIR /app

RUN mkdir -p /app/lib/client
COPY Gemfile Gemfile.lock shutterstock.gemspec ./
COPY lib/client/version.rb ./lib/client
RUN gem install bundler && bundle install --jobs 20 --retry 5

ENV RAKE_ENV development

CMD ["bundle", "exec", "rake", "test"]

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
shutterstock-v2-0.0.1 Dockerfile