Sha256: 2ee38764885aa4f52cb9b8b4b0f1963d5fed6f5f930636b2b91ba48771b0c8ce

Contents?: true

Size: 238 Bytes

Versions: 4

Compression:

Stored size: 238 Bytes

Contents

ARG RUBY_IMAGE=ruby:2.7-alpine
FROM $RUBY_IMAGE

RUN apk add --no-cache --update build-base linux-headers git

ENV APP_HOME /usr/src/app/

RUN mkdir ${APP_HOME}


WORKDIR ${APP_HOME}


COPY . ${APP_HOME}
RUN gem update bundler
RUN bundle 

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
handsome_fencer-crypto-0.1.8 roro/containers/ruby_image/Dockerfile
handsome_fencer-test-0.2.2 roro/containers/ruby_image/Dockerfile
handsome_fencer-test-0.2.1 roro/containers/ruby_image/Dockerfile
handsome_fencer-test-0.2.0 roro/containers/ruby_image/Dockerfile