Skip to content
Snippets Groups Projects
Select Git revision
  • fd1508873df62ed03264f8e15effef3229866163
  • master default
  • msauth
  • set-sast-config-1
  • email-template
  • 1.4.20 protected
  • 1.4.19 protected
  • 1.4.18 protected
  • 1.4.17 protected
  • 1.4.16 protected
  • 1.4.15 protected
  • 1.4.14 protected
  • 1.4.13 protected
  • 1.4.12 protected
  • 1.4.11-3 protected
  • 1.4.11-2 protected
  • 1.4.11 protected
  • 1.4.10 protected
  • 1.4.9 protected
  • 1.4.8 protected
  • 1.4.7 protected
  • 1.4.6 protected
  • 1.4.5 protected
  • 1.4.4 protected
  • 1.4.3 protected
25 results

myfields.py

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