Sha256: 29e4ae5ba307980775bf4ebecfd04a8f8b18f05ffb32886c685f0d91512b1a67

Contents?: true

Size: 875 Bytes

Versions: 15

Compression:

Stored size: 875 Bytes

Contents

FROM ruby:2.6-stretch

RUN apt-get update -qq && \
    apt-get dist-upgrade -qqy && \
    apt-get install -qqy \
    apt-transport-https \
    ca-certificates \
    curl
    
# Install Docker client tools
ENV DOCKERVERSION=20.10.0
RUN curl -fsSLO https://download.docker.com/linux/static/stable/x86_64/docker-${DOCKERVERSION}.tgz \
  && tar xzvf docker-${DOCKERVERSION}.tgz --strip 1 \
                 -C /usr/local/bin docker/docker \
  && rm docker-${DOCKERVERSION}.tgz

RUN mkdir -p /debify
WORKDIR /debify

COPY . ./

RUN gem install bundler:2.2.30
RUN gem build debify.gemspec

ARG VERSION
RUN gem install -N conjur-debify-*.gem

ARG CONJUR_APPLIANCE_URL
ENV CONJUR_APPLIANCE_URL ${CONJUR_APPLIANCE_URL:-https://conjurops.itp.conjur.net}
ENV CONJUR_ACCOUNT ${CONJUR_ACCOUNT:-conjur}
ENV CONJUR_VERSION ${CONJUR_VERSION:-5}

ENTRYPOINT ["/debify/distrib/entrypoint.sh"]

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
conjur-debify-2.1.1.pre.1015 Dockerfile
conjur-debify-2.1.1.pre.1008 Dockerfile
conjur-debify-2.1.1.pre.989 Dockerfile
conjur-debify-2.1.1.pre.988 Dockerfile
conjur-debify-2.1.1.pre.987 Dockerfile
conjur-debify-2.1.1.pre.971 Dockerfile
conjur-debify-2.1.1.pre.4 Dockerfile
conjur-debify-2.1.1.pre.2 Dockerfile
conjur-debify-2.1.1.pre.970 Dockerfile
conjur-debify-2.1.1.pre.967 Dockerfile
conjur-debify-0.0.1.pre.1 Dockerfile
conjur-debify-2.1.1.pre.959 Dockerfile
conjur-debify-2.1.1.pre.958 Dockerfile
conjur-debify-2.1.1.pre.9 Dockerfile
conjur-debify-2.1.1.pre.957 Dockerfile