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

@ -13,6 +13,7 @@ WORKDIR /opt
# install system dependencies # install system dependencies
RUN yum -y update && \ RUN yum -y update && \
yum install -y \ yum install -y \
xterm \
git \ git \
sudo \ sudo \
wget \ wget \
@ -27,7 +28,8 @@ RUN yum -y update && \
tcpdump \ tcpdump \
make && \ make && \
yum-builddep -y python3 && \ yum-builddep -y python3 && \
yum autoremove -y yum autoremove -y && \
yum install -y hostname
# install python3.9 # install python3.9
RUN wget https://www.python.org/ftp/python/3.9.15/Python-3.9.15.tgz && \ RUN wget https://www.python.org/ftp/python/3.9.15/Python-3.9.15.tgz && \
@ -44,7 +46,7 @@ RUN git clone https://github.com/coreemu/core && \
cd core && \ cd core && \
git checkout ${BRANCH} && \ git checkout ${BRANCH} && \
NO_SYSTEM=1 PYTHON=/usr/local/bin/python3.9 ./setup.sh && \ NO_SYSTEM=1 PYTHON=/usr/local/bin/python3.9 ./setup.sh && \
. /root/.bashrc && PYTHON=/usr/local/bin/python3.9 inv install -v -p ${PREFIX} --no-python PATH=/root/.local/bin:$PATH PYTHON=/usr/local/bin/python3.9 inv install -v -p ${PREFIX} --no-python
# install emane # install emane
RUN wget -q https://adjacentlink.com/downloads/emane/emane-1.3.3-release-1.el7.x86_64.tar.gz && \ RUN wget -q https://adjacentlink.com/downloads/emane/emane-1.3.3-release-1.el7.x86_64.tar.gz && \

View file

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