Sha256: c63cdc523e7f5b19c3ad338c5123f1ab010564ba6913d99d06967da6686636bb

Contents?: true

Size: 362 Bytes

Versions: 2

Compression:

Stored size: 362 Bytes

Contents

FROM ruby:2.6.1-alpine3.9

LABEL maintainer="devops@firefield.com"

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

ENV APP_PATH /usr/src/app
WORKDIR $APP_PATH

COPY . .

RUN bundle install --jobs `expr $(cat /proc/cpuinfo | grep -c "cpu cores") - 1` --retry 3

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
middleware_healthcheck-1.0.1 Dockerfile
middleware_healthcheck-1.0.0 Dockerfile