Sha256: 29679893b4169e954d15645d2bcde7204244fd63f1e5bf11eb9ce043c4ebbd5e
Contents?: true
Size: 934 Bytes
Versions: 17
Compression:
Stored size: 934 Bytes
Contents
# Build from the same version of ubuntu as phusion/baseimage FROM ubuntu:14.04 RUN apt-get update -y && \ apt-get install -y software-properties-common && \ apt-add-repository -y ppa:brightbox/ruby-ng && \ apt-get update -y && \ apt-get install -y build-essential git libpq5 libpq-dev ruby2.2 ruby2.2-dev # Configure bundler and gem the way the ruby:2.2 Dockerfile does, as of # https://github.com/docker-library/ruby/commit/c88f3a67da720bfa9fb1717960d90fd5db11c757 ENV BUNDLER_VERSION 1.11.2 RUN gem install --no-rdoc --no-ri bundler:$BUNDLER_VERSION fpm ENV GEM_HOME /usr/local/bundle ENV BUNDLE_PATH="$GEM_HOME" \ BUNDLE_BIN="$GEM_HOME/bin" \ BUNDLE_SILENCE_ROOT_WARNING=1 \ BUNDLE_APP_CONFIG="$GEM_HOME" ENV PATH $BUNDLE_BIN:$PATH RUN mkdir -p "$GEM_HOME" "$BUNDLE_BIN" \ && chmod 777 "$GEM_HOME" "$BUNDLE_BIN" RUN mkdir /src COPY debify_utils.sh / COPY package.sh / ENTRYPOINT [ "/package.sh" ]
Version data entries
17 entries across 17 versions & 1 rubygems