Signed-off-by: Peter Mikus <[email protected]>
Change-Id: Id0c07943ccf22e8983a86cdd2bde6c0b9a554450
python3-dev \
python3-pip \
python3-setuptools \
+ python3-venv \
python3-virtualenv \
rdma-core \
rsyslog \
# Create directory structure
RUN mkdir -p /var/run/sshd
+# CSIT PIP pre-cache
+RUN python3 -m venv venv \
+ && venv/bin/pip3 install --upgrade --no-cache-dir pip \
+ && venv/bin/pip3 install --upgrade setuptools \
+ && venv/bin/pip3 install --upgrade wheel \
+ && pip3 install \
+ PyYAML==6.0.1
+
# Install AB
RUN apt-get -q update \
&& apt-get install -y -qq \