Sha256: f0453d7f5ebedd07571f51aeb521e8af15de54e5c95ce7c8ce9eb25367b212a6

Contents?: true

Size: 245 Bytes

Versions: 1

Compression:

Stored size: 245 Bytes

Contents

FROM ruby:2.1-alpine

RUN apk add --no-cache \
  git build-base \
  nano bash

WORKDIR /app

COPY Gemfile Gemfile.lock kommando.gemspec ./
COPY lib/kommando/version.rb ./lib/kommando/
RUN bundle install

COPY . .
ENTRYPOINT docker/entrypoint.sh

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
kommando-0.1.0 docker/Dockerfile.alpine-2.1