Compare commits
3 Commits
base-image
...
0.0.6
| Author | SHA1 | Date | |
|---|---|---|---|
| da754ca754 | |||
| ae99faf486 | |||
|
|
a51f619dbe |
27
Dockerfile
27
Dockerfile
@@ -12,7 +12,28 @@ RUN dnf update -y && \
|
|||||||
vim \
|
vim \
|
||||||
jq \
|
jq \
|
||||||
createrepo_c \
|
createrepo_c \
|
||||||
python3-pip && \
|
golang \
|
||||||
|
python3-pip \
|
||||||
|
curl \
|
||||||
|
git \
|
||||||
|
tree \
|
||||||
|
htop \
|
||||||
|
tmux \
|
||||||
|
screen \
|
||||||
|
nano \
|
||||||
|
unzip \
|
||||||
|
tar \
|
||||||
|
gzip \
|
||||||
|
rsync \
|
||||||
|
nmap-ncat \
|
||||||
|
telnet \
|
||||||
|
bind-utils \
|
||||||
|
tcpdump \
|
||||||
|
strace \
|
||||||
|
lsof \
|
||||||
|
openssh-clients \
|
||||||
|
nodejs \
|
||||||
|
npm && \
|
||||||
dnf group install -y "Development Tools" && \
|
dnf group install -y "Development Tools" && \
|
||||||
dnf clean all && \
|
dnf clean all && \
|
||||||
case "$(uname -m)" in \
|
case "$(uname -m)" in \
|
||||||
@@ -20,6 +41,8 @@ RUN dnf update -y && \
|
|||||||
aarch64) wget "https://github.com/mikefarah/yq/releases/latest/download/yq_linux_arm64" -O /usr/local/bin/yq ;; \
|
aarch64) wget "https://github.com/mikefarah/yq/releases/latest/download/yq_linux_arm64" -O /usr/local/bin/yq ;; \
|
||||||
*) echo "Unsupported architecture: $ARCH" && exit 1 ;; \
|
*) echo "Unsupported architecture: $ARCH" && exit 1 ;; \
|
||||||
esac && \
|
esac && \
|
||||||
chmod +x /usr/local/bin/yq
|
chmod +x /usr/local/bin/yq && \
|
||||||
|
echo "alias ll='ls -l --color=auto'" >> /root/.bashrc && \
|
||||||
|
echo "alias ls='ls --color=auto'" >> /root/.bashrc
|
||||||
|
|
||||||
CMD ["/bin/bash"]
|
CMD ["/bin/bash"]
|
||||||
Reference in New Issue
Block a user