Skip to content
Snippets Groups Projects
Commit 639201cc authored by Tóth Hunor Zoltán's avatar Tóth Hunor Zoltán
Browse files

Initial commit

parents
Branches redundancy
No related tags found
No related merge requests found
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
runtime-endpoint: unix:///proc/1/root/run/containerd/containerd.sock
image-endpoint: unix:///proc/1/root/run/containerd/containerd.sock
timeout: 10
debug: false
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment