Add some additional packges to our Docker image based tests

This allows using sudo and openssl
This commit is contained in:
ridiculousfish 2021-01-18 15:51:03 -08:00
parent 7f15ec51fd
commit ef3b6750ba
3 changed files with 5 additions and 1 deletions

View File

@ -15,6 +15,7 @@ RUN apt-get update \
ninja-build \
python3 \
python3-pexpect \
sudo \
&& locale-gen en_US.UTF-8
RUN groupadd -g 1000 fishuser \

View File

@ -14,6 +14,7 @@ RUN apt-get update \
ninja-build \
python3 \
python3-pexpect \
sudo \
&& locale-gen en_US.UTF-8
RUN groupadd -g 1000 fishuser \

View File

@ -8,7 +8,9 @@ RUN yum install --assumeyes epel-release https://repo.ius.io/ius-release-el7.rpm
git224-core \
ncurses-devel \
ninja-build \
python3
python3 \
openssl \
sudo
# cmake is called "cmake3" on centos7.
RUN ln -s /usr/bin/cmake3 /usr/bin/cmake \