Sha256: 83da723af8fdb589a1cf73afcf8a6b1cfdedaf3fc4ca7611f0fe008e4dd429af

Contents?: true

Size: 342 Bytes

Versions: 1

Compression:

Stored size: 342 Bytes

Contents

FROM ruby:<%= ruby_version %>
ARG BUNDLE_BITBUCKET__ORG
RUN apt-get update \
 && apt-get install -y node.js \
 && gem install bundler \
 && mkdir /application
WORKDIR /application
COPY Gemfile Gemfile.lock ./
RUN bundle install --deployment
ADD .build/context.tar.gz .
CMD ["bundle", "exec", "rails", "server", "-p", "3000", "-b", "0.0.0.0"]

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
orchestration-0.2.2 lib/orchestration/templates/Dockerfile.tt