Sha256: b7c35f9b747c2312541e35d66fd6568e7566ba32463183cb02d938ef9dafcf27

Contents?: true

Size: 245 Bytes

Versions: 1

Compression:

Stored size: 245 Bytes

Contents

FROM ruby:2.2-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.2