Sha256: 48d7f933cf07ece9ac869107e5559e89b61b5274488e773acdb2a1db2e85794f

Contents?: true

Size: 378 Bytes

Versions: 5

Compression:

Stored size: 378 Bytes

Contents

FROM ruby:<%= ruby_version %>
ARG BUNDLE_BITBUCKET__ORG
ARG BUNDLE_GITHUB__COM
RUN apt-get update \
 && apt-get install -y node.js gosu \
 && rm -rf /var/lib/apt/lists/* \
 && gem install bundler \
 && gem install unicorn \
 && mkdir /application
WORKDIR /application
COPY Gemfile Gemfile.lock ./
RUN bundle install --deployment
COPY entrypoint.sh /
ADD .build/context.tar.gz .

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
orchestration-0.2.7 lib/orchestration/templates/Dockerfile.erb
orchestration-0.2.6 lib/orchestration/templates/Dockerfile.erb
orchestration-0.2.5 lib/orchestration/templates/Dockerfile.erb
orchestration-0.2.4 lib/orchestration/templates/Dockerfile.erb
orchestration-0.2.3 lib/orchestration/templates/Dockerfile.erb