install: updates to centos dockerfiles

This commit is contained in:
Blake Harnden 2023-07-25 16:00:59 -07:00
parent 544ad9b638
commit 2cb8ec2fb2
2 changed files with 7 additions and 3 deletions

View file

@ -11,6 +11,7 @@ WORKDIR /opt
# install basic dependencies
RUN yum -y update && \
yum install -y \
xterm \
git \
sudo \
wget \
@ -30,7 +31,8 @@ RUN yum -y update && \
pkg-config \
make && \
yum-builddep -y python3 && \
yum autoremove -y
yum autoremove -y && \
yum install -y hostname
# install python3.9
RUN wget https://www.python.org/ftp/python/3.9.15/Python-3.9.15.tgz && \