Add procps to test dependencies

`ps` is required by subprocess.rktl test library.
`ps` is found in `procps`, so we install it.

This should move #3134 forward.
This commit is contained in:
Paulo Matos 2020-05-20 11:44:40 +02:00
parent 91f8d8a72f
commit 43c8876643

View File

@ -4,7 +4,7 @@ LABEL description="Debian Stable Slim image with Racket test dependencies pre-in
RUN apt-get update && \
apt-get upgrade -y && \
apt-get install -y libffi-dev make git uuid-dev unzip python libxml2-dev libgtk2.0-0 sudo wget curl openssl ca-certificates libfontconfig1-dev libpango1.0-dev libcairo2-dev libjpeg-dev libturbojpeg0-dev gcc sqlite && \
apt-get install -y libffi-dev make git uuid-dev unzip python libxml2-dev libgtk2.0-0 sudo wget curl openssl ca-certificates libfontconfig1-dev libpango1.0-dev libcairo2-dev libjpeg-dev libturbojpeg0-dev gcc sqlite procps && \
curl -sL https://deb.nodesource.com/setup_14.x | bash - && \
apt-get update && apt-get install -y nodejs && \
apt-get clean