Sha256: 5a8a427f0894d15a1bfb6483cd80aeff7347bd4afa5d595dd68f7b593494a875

Contents?: true

Size: 721 Bytes

Versions: 12

Compression:

Stored size: 721 Bytes

Contents

FROM alpine:3.6
MAINTAINER Kontena, Inc. <info@kontena.io>

ARG CLI_VERSION

RUN apk update && \
  apk --update add ruby ruby-json ruby-bigdecimal ruby-io-console \
  curl ca-certificates libssl1.0 openssl libstdc++ && \
  curl -sL https://download.docker.com/linux/static/stable/x86_64/docker-17.06.2-ce.tgz > /tmp/docker.tgz && \
  cd /tmp && \
  tar zxf docker.tgz && \
  mv docker/docker /usr/local/bin/ && \
  rm -rf /tmp/docker* && \
  chmod +x /usr/local/bin/docker

RUN apk --update add --virtual build-dependencies ruby-dev build-base openssl-dev && \
  gem install kontena-cli --no-rdoc --no-ri -v ${CLI_VERSION} && \
  apk del build-dependencies

VOLUME ["/root"]
WORKDIR /root
ENTRYPOINT ["/usr/bin/kontena"]

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
kontena-cli-1.5.4 Dockerfile
kontena-cli-1.5.4.rc1 Dockerfile
kontena-cli-1.5.3 Dockerfile
kontena-cli-1.5.2 Dockerfile
kontena-cli-1.5.1 Dockerfile
kontena-cli-1.5.0 Dockerfile
kontena-cli-1.5.0.rc1 Dockerfile
kontena-cli-1.5.0.pre5 Dockerfile
kontena-cli-1.5.0.pre4 Dockerfile
kontena-cli-1.5.0.pre3 Dockerfile
kontena-cli-1.5.0.pre2 Dockerfile
kontena-cli-1.5.0.pre1 Dockerfile