You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
1.1 KiB

  1. # Use imutable image tags rather than mutable tags (like ubuntu:18.04)
  2. FROM ubuntu:bionic-20200807
  3. ENV KUBE_VERSION=v1.20.2
  4. RUN mkdir /kubespray
  5. WORKDIR /kubespray
  6. RUN apt update -y && \
  7. apt install -y \
  8. libssl-dev python3-dev sshpass apt-transport-https jq moreutils \
  9. ca-certificates curl gnupg2 software-properties-common python3-pip rsync
  10. RUN curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add - && \
  11. add-apt-repository \
  12. "deb [arch=amd64] https://download.docker.com/linux/ubuntu \
  13. $(lsb_release -cs) \
  14. stable" \
  15. && apt update -y && apt-get install docker-ce -y
  16. COPY . .
  17. RUN /usr/bin/python3 -m pip install pip -U && /usr/bin/python3 -m pip install -r tests/requirements.txt && python3 -m pip install -r requirements.txt && update-alternatives --install /usr/bin/python python /usr/bin/python3 1
  18. RUN curl -LO https://storage.googleapis.com/kubernetes-release/release/$KUBE_VERSION/bin/linux/amd64/kubectl \
  19. && chmod a+x kubectl && cp kubectl /usr/local/bin/kubectl
  20. # Some tools like yamllint need this
  21. ENV LANG=C.UTF-8