Sha256: 67bc795b88bab2a57e6e48f439768cfa0561d962b41df25bd0dde2153408a2c3
Contents?: true
Size: 359 Bytes
Versions: 9
Compression:
Stored size: 359 Bytes
Contents
ARG RUBY_VERSION=<%= config[:ruby_version] %> ARG RUBY_IMAGE=ruby:${RUBY_VERSION}-alpine FROM $RUBY_IMAGE RUN apk add --no-cache --update build-base linux-headers git ENV APP_HOME /usr/src/app/ ENV BUNDLE_PATH /gems ENV GEM_PATH ${BUNDLE_PATH} ENV GEM_HOME ${BUNDLE_PATH} RUN mkdir ${BUNDLE_PATH} WORKDIR ${APP_HOME} COPY . ${APP_HOME} RUN bundle install
Version data entries
9 entries across 9 versions & 1 rubygems