Added bash container

This commit is contained in:
Eliezer Croitoru 2025-01-28 10:32:57 +02:00
parent f325fcbeb5
commit 2fcbee0b4d

32
bash/rocky9/Dockerfile Normal file
View File

@ -0,0 +1,32 @@
FROM rockylinux:9
ENV container=docker
# Install requirements.
RUN dnf -y install rpm dnf-plugins-core \
&& dnf -y config-manager --set-enabled crb \
&& dnf -y update \
&& dnf -y install --allowerasing \
epel-release \
sudo \
which \
hostname \
libyaml-devel \
python3 \
python3-pip \
python3-pyyaml \
rsync \
wget \
curl \
git \
ruby ruby-devel \
ruby bash bash-completion openssh sshpass nmap-ncat \
nmap \
&& dnf clean all
RUN python3 -m pip install --no-cache-dir --upgrade pip
RUN mkdir -p /root/.ssh
CMD ["bash"]