Sha256: ae026b05fc13a88e40643e2e77298b4f4a0191379c1fac6f7c0ea51f4a329942

Contents?: true

Size: 346 Bytes

Versions: 6

Compression:

Stored size: 346 Bytes

Contents

ARG RUBY_VERSION=${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

6 entries across 6 versions & 1 rubygems

Version Path
roro-0.3.30 mise/containers/ruby_gem/Dockerfile
roro-0.3.28 mise/containers/ruby_gem/Dockerfile
roro-0.3.27 mise/containers/ruby_gem/Dockerfile
roro-0.3.25 mise/containers/ruby_gem/Dockerfile
roro-0.3.24 mise/containers/ruby_gem/Dockerfile
roro-0.3.23 mise/containers/ruby_gem/Dockerfile