Skip to content
Snippets Groups Projects
Select Git revision
  • 639201ccd4d61bc505e202897609c272b565d7ad
  • main default protected
2 results

Dockerfile

Blame
  • Dockerfile 603 B
    FROM ubuntu:latest
    
    RUN apt-get update
    RUN apt-get install -y iproute2 dnsutils iputils-ping wget tar curl
    RUN apt-get install -y vim neovim nano
    ENV VERSION="v1.32.0"
    RUN wget https://github.com/kubernetes-sigs/cri-tools/releases/download/$VERSION/crictl-$VERSION-linux-amd64.tar.gz;\
        tar zxvf crictl-$VERSION-linux-amd64.tar.gz -C /usr/local/bin;\
        rm -f crictl-$VERSION-linux-amd64.tar.gz
    COPY crictl.conf /etc/crictl.yaml
    RUN apt-get -y install tcpdump
    RUN apt-get -y install zsh git
    RUN sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
    CMD zsh