Sha256: c13d48ffc26e43c0e4c8e761265dcfef1fcc3d21dc93930bd8f9849222b09d69

Contents?: true

Size: 550 Bytes

Versions: 20

Compression:

Stored size: 550 Bytes

Contents

# Build Image
# docker build -t ruby:ramsey_cop .

# Run Tests
# docker run ruby:ramsey_cop
# Run bash
# docker run -it ruby:ramsey_cop bash

FROM ruby:2.4.0

RUN apt-get update -qq && \
    apt-get upgrade -y

RUN gem update --system && \
    gem update bundler

RUN mkdir /app
WORKDIR /app


ADD Gemfile /app/Gemfile
ADD Gemfile.lock /app/Gemfile.lock
ADD ramsey_cop.gemspec /app/ramsey_cop.gemspec
ADD ./lib/ramsey_cop/version.rb /app/lib/ramsey_cop/version.rb
RUN bundle install
ENV PATH="./bin:${PATH}"s

ADD . /app
CMD ["bundle","exec","rake"]

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
ramsey_cop-0.24.0 Dockerfile
ramsey_cop-0.23.0 Dockerfile
ramsey_cop-0.22.0 Dockerfile
ramsey_cop-0.20.0 Dockerfile
ramsey_cop-0.19.0 Dockerfile
ramsey_cop-0.18.0 Dockerfile
ramsey_cop-0.16.0 Dockerfile
ramsey_cop-0.15.0 Dockerfile
ramsey_cop-0.14.2 Dockerfile
ramsey_cop-0.14.1 Dockerfile
ramsey_cop-0.14.0 Dockerfile
ramsey_cop-0.13.2 Dockerfile
ramsey_cop-0.13.1 Dockerfile
ramsey_cop-0.13.0 Dockerfile
ramsey_cop-0.12.0 Dockerfile
ramsey_cop-0.11.0 Dockerfile
ramsey_cop-0.10.0 Dockerfile
ramsey_cop-0.9.0 Dockerfile
ramsey_cop-0.8.0 Dockerfile
ramsey_cop-0.7.3 Dockerfile