Sha256: 3482a5e685ae732a1cb61e29e22eeb9acfcc2eb334f907af1e7e9450c06d8fff
Contents?: true
Size: 739 Bytes
Versions: 1
Compression:
Stored size: 739 Bytes
Contents
# Build from the same version of ubuntu as phusion/baseimage FROM ubuntu:18.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.6 ruby2.6-dev libffi-dev RUN gem install --no-document bundler:2.0.2 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
conjur-debify-1.11.2 | lib/conjur/fpm/Dockerfile |