Sha256: 4d8bd6ab742b23161365b49f3b06de04eccb1db0b42689c808d18095569397b6

Contents?: true

Size: 857 Bytes

Versions: 31

Compression:

Stored size: 857 Bytes

Contents

# How to use it
# =============
#
# Visit http://blog.zedroot.org/using-docker-to-maintain-a-ruby-gem/

# ~~~~ Image base ~~~~
# Base image with the latest Ruby only
FROM ruby:2.3.0-slim
MAINTAINER Guillaume Hain zedtux@zedroot.org


# ~~~~ Set up the environment ~~~~
ENV DEBIAN_FRONTEND noninteractive

RUN mkdir -p /gem/
WORKDIR /gem/
ADD . /gem/

# ~~~~ OS Maintenance & Rails Preparation ~~~~
# Rubygems and Bundler
RUN apt-get update && \
  apt-get install -y git build-essential && \
  touch ~/.gemrc && \
  echo "gem: --no-ri --no-rdoc" >> ~/.gemrc && \
  gem install rubygems-update && \
  update_rubygems && \
  gem install bundler && \
  bundle install && \
  apt-get remove --purge -y build-essential && \
  apt-get autoclean -y && \
  apt-get clean

# Import the gem source code
VOLUME .:/gem/

ENTRYPOINT ["bundle", "exec"]
CMD ["rake", "-T"]

Version data entries

31 entries across 31 versions & 3 rubygems

Version Path
bootstrap-slider-rails-9.8.0 Dockerfile
bootstrap-slider-rails-9.7.0 Dockerfile
bootstrap-slider-rails-9.6.0 Dockerfile
bootstrap-slider-rails-9.5.0 Dockerfile
bootstrap-slider-rails-9.4.0 Dockerfile
bootstrap-slider-rails-9.3.0 Dockerfile
bootstrap-slider-rails-9.2.0 Dockerfile
capistrano-docker-cloud-0.2.2 Dockerfile
ezdz-rails-0.5.1 Dockerfile
ezdz-rails-0.5.0 Dockerfile
bootstrap-slider-rails-9.1.3 Dockerfile
bootstrap-slider-rails-9.1.2 Dockerfile
bootstrap-slider-rails-9.1.1 Dockerfile
bootstrap-slider-rails-9.1.0 Dockerfile
bootstrap-slider-rails-9.0.0 Dockerfile
bootstrap-slider-rails-8.0.0 Dockerfile
bootstrap-slider-rails-7.1.2 Dockerfile
bootstrap-slider-rails-7.1.1 Dockerfile
bootstrap-slider-rails-7.0.5 Dockerfile
bootstrap-slider-rails-7.0.3 Dockerfile