1
0
mirror of https://github.com/google/nomulus synced 2025-12-23 14:25:44 +00:00

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

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