Sha256: 14c2f71b7322de995dcec1c27de48eb52366bf2d7487027f34e167cfb29f0de1

Contents?: true

Size: 867 Bytes

Versions: 16

Compression:

Stored size: 867 Bytes

Contents

FROM ruby:3.0

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

16 entries across 16 versions & 1 rubygems

Version Path
conjur-debify-3.0.1.pre.1653 Dockerfile
conjur-debify-3.0.1.pre.1652 Dockerfile
conjur-debify-3.0.1.pre.1638 Dockerfile
conjur-debify-3.0.1.pre.1633 Dockerfile
conjur-debify-3.0.1.pre.1614 Dockerfile
conjur-debify-3.0.1.pre.2 Dockerfile
conjur-debify-3.0.1.pre.1610 Dockerfile
conjur-debify-3.0.1.pre.1548 Dockerfile
conjur-debify-3.0.0.pre.1093 Dockerfile
conjur-debify-3.0.0.pre.1059 Dockerfile
conjur-debify-3.0.0.pre.1043 Dockerfile
conjur-debify-3.0.0.pre.1036 Dockerfile
conjur-debify-3.0.0 Dockerfile
conjur-debify-3.0.0.pre.1027 Dockerfile
conjur-debify-3.0.0.pre.1023 Dockerfile
conjur-debify-0.0.1.pre.47 Dockerfile