Sha256: 234d314eb84165c5c2ca795ac9f8c4c84b42a230e1e5c03c0e5160e49a6d3635
Contents?: true
Size: 334 Bytes
Versions: 13
Compression:
Stored size: 334 Bytes
Contents
ARG RUBY_VERSION=2.7 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
13 entries across 13 versions & 1 rubygems