Install procps (#1932)

The schema verifier script needs pgrep and pkill, which do not come with
Debian.
This commit is contained in:
Lai Jiang 2023-02-06 19:45:04 -05:00 committed by GitHub
parent fc9446876f
commit a53b71ecd5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -36,7 +36,7 @@ RUN apt-get update -y \
'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" \
> /etc/apt/sources.list.d/pgdg.list' \
&& apt-get update -y \
&& apt install postgresql-client-11 -y
&& apt install postgresql-client-11 procps -y
# Use unzip to extract files from jars.
RUN apt-get install zip -y