Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kaznak committed Jul 19, 2024
1 parent 443156e commit 9f59578
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cloudnativepg-configured/16/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -80,12 +80,13 @@ RUN apt-get update \
# Install pgroonga
RUN apt-get update \
&& apt-get install -y lsb-release wget \
&& lsb_release -c -s \
&& wget "https://packages.groonga.org/debian/groonga-apt-source-latest-$(lsb_release -c -s).deb" \
&& apt-get install -y -V ./groonga-apt-source-latest-$(lsb_release -c -s).deb \
&& echo "deb http://apt.postgresql.org/pub/repos/apt/ $(lsb_release -c -s)-pgdg main" | tee /etc/apt/sources.list.d/pgdg.list \
&& wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add - \
&& apt-get update \
&& apt install -y -V "postgresql-${PG_MAJOR}-pgdg-pgroonga" "groonga-tokenizer-mecab" \
&& apt-get install -y -V "postgresql-${PG_MAJOR}-pgdg-pgroonga" "groonga-tokenizer-mecab" \
&& apt-get remove -y lsb-release wget \
&& apt-get autoremove -y \
&& apt-get clean \
Expand Down

0 comments on commit 9f59578

Please sign in to comment.