Sha256: f519b6bffec9bfb401af8e0dd3bead0f889dc5566166af913e9f9f956c949ecb

Contents?: true

Size: 264 Bytes

Versions: 1

Compression:

Stored size: 264 Bytes

Contents

FROM ruby:2.4.1
ENV DEBIAN_FRONTEND=noninteractive

RUN apt-get update && apt-get install -y nano

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.debian