Sign inSign up

redalvagui/debian11

By redalvagui

Updated about 4 years ago

Imagen de debian11 con herramientas para el trabajo de aws/kubernetes

Image
0

5.7K

redalvagui/debian11 repository overview

debian11

Dockerfile

Imagen from scratch:

FROM scratch
ADD deb.tar.gz .
RUN rm -f /root/.bash_history

package deb.tar.gz

This was the principal step in the construction:

sudo debootstrap bullseye bullseye http://deb.debian.org/debian
sudo chroot bullseye
echo "deb http://deb.debian.org/debian-security bullseye-security main" >> /etc/apt/sources.list
echo "deb http://deb.debian.org/debian bullseye-updates main" >> /etc/apt/sources.list
apt upgrade && apt upgrade -y
apt update && apt install -y vim apt-transport-https ca-certificates curl iproute2 bind9-dnsutils bash-completion unzip python3 python3-pip htop procps wget
curl -fsSLo /usr/share/keyrings/kubernetes-archive-keyring.gpg https://packages.cloud.google.com/apt/doc/apt-key.gpg
echo "deb [signed-by=/usr/share/keyrings/kubernetes-archive-keyring.gpg] https://apt.kubernetes.io/ kubernetes-xenial main" | tee /etc/apt/sources.list.d/kubernetes.list
apt update
apt install -y kubectl
pip3 install awscli
exit
cd bullseye
sudo tar cvzf ../deb.tar.gz *

Version:

20220623
  • All Packages is updates at 2022.06.23
  • aws version: aws-cli/1.25.16 Python/3.9.2 Linux/5.10.0-15-amd64 botocore/1.27.16,
  • kubectl version: Client Version: v1.24.2 Kustomize Version: v4.5.4
20220624
  • Add packages git git-crypt
  • Add Dockerfile ENV DEBIAN_FRONTEND=noninteractive

Tag summary

Content type

Image

Digest

Size

434.6 MB

Last updated

about 4 years ago

docker pull redalvagui/debian11