docker: Add sudo package to container

New Docker images will be uploaded by next release

Fixes: https://github.com/phoronix-test-suite/phoronix-test-suite/issues/555
This commit is contained in:
Michael Larabel
2021-11-21 17:46:14 -06:00
parent 3c990df77c
commit 1fc8fbe76e

View File

@@ -42,7 +42,7 @@ MAINTAINER Phoronix Media <commercial@phoronix-test-suite.com>
ADD base.tar.xz /
ARG DEBIAN_FRONTEND=noninteractive
RUN apt update
RUN apt install -y unzip php-cli apt-utils mesa-utils php-xml git-core apt-file
RUN apt install -y unzip php-cli apt-utils mesa-utils php-xml git-core apt-file sudo
RUN apt-file update
CMD ["/phoronix-test-suite/phoronix-test-suite", "shell"]
EOF