Sign inSign up

focisolutions/operator-sdk

By focisolutions

•Updated almost 7 years ago

Image
0

273

focisolutions/operator-sdk repository overview

FROM debian:jessie-slim

ENV RELEASE_VERSION=v0.13.0 \
    DOCKER_CHANNEL=stable \
    DOCKER_API_VERSION=1.27 \
    DOCKER_VERSION=17.03.1-ce

# install curl
RUN apt-get update && apt-get install curl -y

# Install docker client    
RUN curl -fsSL "https://download.docker.com/linux/static/${DOCKER_CHANNEL}/x86_64/docker-${DOCKER_VERSION}.tgz" \
  | tar -xzC /usr/local/bin --strip=1 docker/docker

# Install kubectl
RUN curl -LO https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl \
    && chmod +x ./kubectl \
    && mv ./kubectl /usr/local/bin

# Install Operator
RUN curl -LO https://github.com/operator-framework/operator-sdk/releases/download/${RELEASE_VERSION}/operator-sdk-${RELEASE_VERSION}-x86_64-linux-gnu
RUN chmod +x operator-sdk-${RELEASE_VERSION}-x86_64-linux-gnu \
    && mkdir -p /usr/local/bin/ && cp operator-sdk-${RELEASE_VERSION}-x86_64-linux-gnu /usr/local/bin/operator-sdk \
    && rm operator-sdk-${RELEASE_VERSION}-x86_64-linux-gnu

Tag summary

Content type

Image

Digest

Size

115.1 MB

Last updated

almost 7 years ago

docker pull focisolutions/operator-sdk