Sha256: 234a81c8e13c9eb1cb46ea99ccd740879c49c53069a401218a6622a9ce944a5f

Contents?: true

Size: 283 Bytes

Versions: 8

Compression:

Stored size: 283 Bytes

Contents

ARG RUBY_VERSION=2.3.4
FROM ruby:${RUBY_VERSION}-alpine

RUN apk add --no-cache git openssl-dev build-base

RUN mkdir /app
WORKDIR /app

COPY Gemfile Gemfile.lock netbox-client-ruby.gemspec VERSION ./
RUN bundle install --jobs 4 --deployment --quiet

COPY . ./


CMD docker/start.sh

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
netbox-client-ruby-0.2.3 Dockerfile
netbox-client-ruby-0.2.2 Dockerfile
netbox-client-ruby-0.2.1 Dockerfile
netbox-client-ruby-0.2.0 Dockerfile
netbox-client-ruby-0.1.4 Dockerfile
netbox-client-ruby-0.1.3 Dockerfile
netbox-client-ruby-0.1.2 Dockerfile
netbox-client-ruby-0.1.1 Dockerfile