Sha256: 078751ce2f5bbf3fb897ee66f24b944dbcd200a56519db09ee45b96c59c3a6d7

Contents?: true

Size: 960 Bytes

Versions: 3

Compression:

Stored size: 960 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 libffi-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 ruby-xz:0.2.3 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

ENTRYPOINT [ "/package.sh" ]

COPY debify_utils.sh /
COPY package.sh      /

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
conjur-debify-1.11.1 lib/conjur/fpm/Dockerfile
conjur-debify-1.10.3 lib/conjur/fpm/Dockerfile
conjur-debify-1.10.2 lib/conjur/fpm/Dockerfile