Skip to content
Snippets Groups Projects
Select Git revision
  • 3c666ccdaaddd62ec0c6e8788602ee0c100349cf
  • master default protected
  • v1.14.7
  • v1.14.6
  • v1.14.5
  • v1.14.4
  • v1.14.3
  • v1.14.2
  • v1.14.1
  • v1.14.0
  • v1.13.2
  • v1.13.1
  • v1.13.0
  • v1.12.1
  • v1.12.0
  • v1.11.1
  • v1.11.0
  • v1.10.0
  • v1.9.2
  • v1.9.1
  • v1.9.0
  • v1.8.4
22 results

README-service.md

Blame
  • Dockerfile 654 B
    FROM ubuntu:16.04
    
    RUN mkdir /kubespray
    WORKDIR /kubespray
    RUN apt update -y && \
        apt install -y \
        libssl-dev python-dev sshpass apt-transport-https \
        ca-certificates curl gnupg2 software-properties-common python-pip
    RUN  curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add - && \
         add-apt-repository \
         "deb [arch=amd64] https://download.docker.com/linux/ubuntu \
         $(lsb_release -cs) \
         stable" \
         && apt update -y && apt-get install docker-ce -y
    COPY . .
    RUN /usr/bin/python -m pip install pip -U && /usr/bin/python -m pip install -r tests/requirements.txt && python -m pip install -r requirements.txt