1
0
mirror of https://github.com/google/nomulus synced 2026-05-24 00:31:54 +00:00

Compare commits

...

2 Commits

Author SHA1 Message Date
Lai Jiang
a53b71ecd5 Install procps (#1932)
The schema verifier script needs pgrep and pkill, which do not come with
Debian.
2023-02-06 19:45:04 -05:00
Lai Jiang
fc9446876f Install curl (#1931)
Tested by running "docker build .".
2023-02-06 16:45:52 -05:00
2 changed files with 2 additions and 2 deletions

View File

@@ -31,7 +31,7 @@ RUN apt-get update -y \
&& locale-gen en_US.UTF-8 \
&& apt-get install apt-utils -y \
&& apt-get upgrade -y \
&& apt-get install openjdk-11-jdk-headless -y
&& apt-get install openjdk-11-jdk-headless curl -y
# Get netstat, used for checking Cloud SQL proxy readiness.
RUN apt-get install net-tools

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