Sha256: 44dffba5ed07e590210c64c988a15017aabd24d25011e0d16a804b740ff4420c

Contents?: true

Size: 247 Bytes

Versions: 1

Compression:

Stored size: 247 Bytes

Contents

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