Added bash container
This commit is contained in:
parent
f325fcbeb5
commit
2fcbee0b4d
32
bash/rocky9/Dockerfile
Normal file
32
bash/rocky9/Dockerfile
Normal 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"]
|
Loading…
Reference in New Issue
Block a user